2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* script_editor_plugin.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
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 "script_editor_plugin.h"
|
|
|
|
#include "tools/editor/editor_settings.h"
|
|
|
|
#include "io/resource_loader.h"
|
|
|
|
#include "io/resource_saver.h"
|
|
|
|
#include "os/keyboard.h"
|
|
|
|
#include "os/os.h"
|
|
|
|
#include "tools/editor/editor_node.h"
|
|
|
|
#include "tools/editor/script_editor_debugger.h"
|
|
|
|
#include "globals.h"
|
|
|
|
#include "os/file_access.h"
|
|
|
|
#include "scene/main/viewport.h"
|
|
|
|
#include "os/keyboard.h"
|
2015-06-22 05:03:19 +02:00
|
|
|
#include "os/input.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
/*** SCRIPT EDITOR ****/
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
2016-09-12 15:52:29 +02:00
|
|
|
|
|
|
|
void ScriptEditorBase::_bind_methods() {
|
|
|
|
|
|
|
|
ADD_SIGNAL(MethodInfo("name_changed"));
|
|
|
|
ADD_SIGNAL(MethodInfo("request_help_search",PropertyInfo(Variant::STRING,"topic")));
|
|
|
|
ADD_SIGNAL(MethodInfo("request_open_script_at_line",PropertyInfo(Variant::OBJECT,"script"),PropertyInfo(Variant::INT,"line")));
|
|
|
|
ADD_SIGNAL(MethodInfo("request_save_history"));
|
|
|
|
ADD_SIGNAL(MethodInfo("go_to_help",PropertyInfo(Variant::STRING,"what")));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-07-07 01:35:49 +02:00
|
|
|
static bool _can_open_in_editor(Script* p_script) {
|
|
|
|
|
|
|
|
String path = p_script->get_path();
|
|
|
|
|
|
|
|
if (path.find("::")!=-1) {
|
|
|
|
//refuse handling this if it can't be edited
|
|
|
|
|
|
|
|
bool valid=false;
|
|
|
|
for(int i=0;i<EditorNode::get_singleton()->get_editor_data().get_edited_scene_count();i++) {
|
|
|
|
if (path.begins_with(EditorNode::get_singleton()->get_editor_data().get_scene_path(i))) {
|
|
|
|
valid=true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-26 06:14:31 +02:00
|
|
|
class EditorScriptCodeCompletionCache : public ScriptCodeCompletionCache {
|
|
|
|
|
|
|
|
|
|
|
|
struct Cache {
|
|
|
|
uint64_t time_loaded;
|
|
|
|
RES cache;
|
|
|
|
};
|
|
|
|
|
|
|
|
Map<String,Cache> cached;
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
uint64_t max_time_cache;
|
|
|
|
int max_cache_size;
|
|
|
|
|
|
|
|
void cleanup() {
|
|
|
|
|
|
|
|
List< Map<String,Cache>::Element * > to_clean;
|
|
|
|
|
|
|
|
|
|
|
|
Map<String,Cache>::Element *I=cached.front();
|
|
|
|
while(I) {
|
|
|
|
if ((OS::get_singleton()->get_ticks_msec()-I->get().time_loaded)>max_time_cache) {
|
|
|
|
to_clean.push_back(I);
|
|
|
|
}
|
|
|
|
I=I->next();
|
|
|
|
}
|
|
|
|
|
|
|
|
while(to_clean.front()) {
|
|
|
|
cached.erase(to_clean.front()->get());
|
|
|
|
to_clean.pop_front();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RES get_cached_resource(const String& p_path) {
|
|
|
|
|
|
|
|
Map<String,Cache>::Element *E=cached.find(p_path);
|
|
|
|
if (!E) {
|
|
|
|
|
|
|
|
Cache c;
|
|
|
|
c.cache=ResourceLoader::load(p_path);
|
|
|
|
E=cached.insert(p_path,c);
|
|
|
|
}
|
|
|
|
|
|
|
|
E->get().time_loaded=OS::get_singleton()->get_ticks_msec();
|
|
|
|
|
|
|
|
if (cached.size()>max_cache_size) {
|
|
|
|
uint64_t older;
|
|
|
|
Map<String,Cache>::Element *O=cached.front();
|
|
|
|
older=O->get().time_loaded;
|
|
|
|
Map<String,Cache>::Element *I=O;
|
|
|
|
while(I) {
|
|
|
|
if (I->get().time_loaded<older) {
|
|
|
|
older = I->get().time_loaded;
|
|
|
|
O=I;
|
|
|
|
}
|
|
|
|
I=I->next();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (O!=E) {//should never heppane..
|
|
|
|
cached.erase(O);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return E->get().cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
EditorScriptCodeCompletionCache() {
|
|
|
|
|
|
|
|
max_cache_size=128;
|
|
|
|
max_time_cache=5*60*1000; //minutes, five
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
#define SORT_SCRIPT_LIST
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void ScriptEditorQuickOpen::popup(const Vector<String>& p_functions, bool p_dontclear) {
|
|
|
|
|
|
|
|
popup_centered_ratio(0.6);
|
|
|
|
if (p_dontclear)
|
|
|
|
search_box->select_all();
|
|
|
|
else
|
|
|
|
search_box->clear();
|
|
|
|
search_box->grab_focus();
|
|
|
|
functions=p_functions;
|
|
|
|
_update_search();
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ScriptEditorQuickOpen::_text_changed(const String& p_newtext) {
|
|
|
|
|
|
|
|
_update_search();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditorQuickOpen::_sbox_input(const InputEvent& p_ie) {
|
|
|
|
|
|
|
|
if (p_ie.type==InputEvent::KEY && (
|
|
|
|
p_ie.key.scancode == KEY_UP ||
|
|
|
|
p_ie.key.scancode == KEY_DOWN ||
|
|
|
|
p_ie.key.scancode == KEY_PAGEUP ||
|
|
|
|
p_ie.key.scancode == KEY_PAGEDOWN ) ) {
|
|
|
|
|
2017-01-08 20:28:12 +01:00
|
|
|
search_options->call("_gui_input",p_ie);
|
2014-02-10 02:10:30 +01:00
|
|
|
search_box->accept_event();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ScriptEditorQuickOpen::_update_search() {
|
|
|
|
|
|
|
|
|
|
|
|
search_options->clear();
|
|
|
|
TreeItem *root = search_options->create_item();
|
|
|
|
|
|
|
|
for(int i=0;i<functions.size();i++) {
|
|
|
|
|
|
|
|
String file = functions[i];
|
|
|
|
if ((search_box->get_text()=="" || file.findn(search_box->get_text())!=-1)) {
|
|
|
|
|
|
|
|
TreeItem *ti = search_options->create_item(root);
|
|
|
|
ti->set_text(0,file);
|
|
|
|
if (root->get_children()==ti)
|
|
|
|
ti->select(0);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get_ok()->set_disabled(root->get_children()==NULL);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditorQuickOpen::_confirmed() {
|
|
|
|
|
|
|
|
TreeItem *ti = search_options->get_selected();
|
|
|
|
if (!ti)
|
|
|
|
return;
|
|
|
|
int line = ti->get_text(0).get_slice(":",1).to_int();
|
|
|
|
|
|
|
|
emit_signal("goto_line",line-1);
|
|
|
|
hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditorQuickOpen::_notification(int p_what) {
|
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
if (p_what==NOTIFICATION_ENTER_TREE) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
connect("confirmed",this,"_confirmed");
|
2015-06-22 05:03:19 +02:00
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ScriptEditorQuickOpen::_bind_methods() {
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("_text_changed"),&ScriptEditorQuickOpen::_text_changed);
|
|
|
|
ClassDB::bind_method(_MD("_confirmed"),&ScriptEditorQuickOpen::_confirmed);
|
|
|
|
ClassDB::bind_method(_MD("_sbox_input"),&ScriptEditorQuickOpen::_sbox_input);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
ADD_SIGNAL(MethodInfo("goto_line",PropertyInfo(Variant::INT,"line")));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ScriptEditorQuickOpen::ScriptEditorQuickOpen() {
|
|
|
|
|
|
|
|
|
|
|
|
VBoxContainer *vbc = memnew( VBoxContainer );
|
|
|
|
add_child(vbc);
|
2017-01-10 05:49:55 +01:00
|
|
|
//set_child_rect(vbc);
|
2014-02-10 02:10:30 +01:00
|
|
|
search_box = memnew( LineEdit );
|
2016-05-04 03:25:37 +02:00
|
|
|
vbc->add_margin_child(TTR("Search:"),search_box);
|
2014-02-10 02:10:30 +01:00
|
|
|
search_box->connect("text_changed",this,"_text_changed");
|
2017-01-08 20:28:12 +01:00
|
|
|
search_box->connect("gui_input",this,"_sbox_input");
|
2014-02-10 02:10:30 +01:00
|
|
|
search_options = memnew( Tree );
|
2016-05-04 03:25:37 +02:00
|
|
|
vbc->add_margin_child(TTR("Matches:"),search_options,true);
|
|
|
|
get_ok()->set_text(TTR("Open"));
|
2014-02-10 02:10:30 +01:00
|
|
|
get_ok()->set_disabled(true);
|
|
|
|
register_text_enter(search_box);
|
|
|
|
set_hide_on_ok(false);
|
|
|
|
search_options->connect("item_activated",this,"_confirmed");
|
|
|
|
search_options->set_hide_root(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////
|
|
|
|
|
|
|
|
ScriptEditor *ScriptEditor::script_editor=NULL;
|
|
|
|
|
|
|
|
/*** SCRIPT EDITOR ******/
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
String ScriptEditor::_get_debug_tooltip(const String&p_text,Node *_se) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
// ScriptEditorBase *se=_se->cast_to<ScriptEditorBase>();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
String val = debugger->get_var_value(p_text);
|
|
|
|
if (val!=String()) {
|
|
|
|
return p_text+": "+val;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return String();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_breaked(bool p_breaked,bool p_can_debug) {
|
|
|
|
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_NEXT), !(p_breaked && p_can_debug));
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_STEP), !(p_breaked && p_can_debug) );
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_BREAK), p_breaked );
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), !p_breaked );
|
|
|
|
|
2016-08-07 00:00:54 +02:00
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se) {
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
se->set_debugger_active(p_breaked);
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_show_debugger(bool p_show) {
|
|
|
|
|
2016-02-21 15:52:11 +01:00
|
|
|
// debug_menu->get_popup()->set_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW), p_show);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2015-08-10 01:39:59 +02:00
|
|
|
void ScriptEditor::_script_created(Ref<Script> p_script) {
|
|
|
|
editor->push_item(p_script.operator->());
|
|
|
|
}
|
|
|
|
|
2016-04-23 20:21:34 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void ScriptEditor::_goto_script_line2(int p_line) {
|
|
|
|
|
|
|
|
int selected = tab_container->get_current_tab();
|
|
|
|
if (selected<0 || selected>=tab_container->get_child_count())
|
|
|
|
return;
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *current = tab_container->get_child(selected)->cast_to<ScriptEditorBase>();
|
2014-02-10 02:10:30 +01:00
|
|
|
if (!current)
|
|
|
|
return;
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
current->goto_line(p_line);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_goto_script_line(REF p_script,int p_line) {
|
|
|
|
|
|
|
|
|
|
|
|
editor->push_item(p_script.ptr());
|
2016-08-07 00:00:54 +02:00
|
|
|
|
|
|
|
int selected = tab_container->get_current_tab();
|
|
|
|
if (selected<0 || selected>=tab_container->get_child_count())
|
|
|
|
return;
|
|
|
|
|
|
|
|
ScriptEditorBase *current = tab_container->get_child(selected)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!current)
|
|
|
|
return;
|
|
|
|
|
|
|
|
current->goto_line(p_line,true);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
void ScriptEditor::_update_history_arrows() {
|
|
|
|
|
|
|
|
script_back->set_disabled( history_pos<=0 );
|
|
|
|
script_forward->set_disabled( history_pos>=history.size()-1 );
|
|
|
|
}
|
|
|
|
|
2016-09-12 15:52:29 +02:00
|
|
|
void ScriptEditor::_save_history() {
|
|
|
|
|
|
|
|
|
|
|
|
if (history_pos>=0 && history_pos<history.size() && history[history_pos].control==tab_container->get_current_tab_control()) {
|
|
|
|
|
|
|
|
Node *n = tab_container->get_current_tab_control();
|
|
|
|
|
|
|
|
if (n->cast_to<ScriptEditorBase>()) {
|
|
|
|
|
|
|
|
history[history_pos].state=n->cast_to<ScriptEditorBase>()->get_edit_state();
|
|
|
|
}
|
|
|
|
if (n->cast_to<EditorHelp>()) {
|
|
|
|
|
|
|
|
history[history_pos].state=n->cast_to<EditorHelp>()->get_scroll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
history.resize(history_pos+1);
|
|
|
|
ScriptHistory sh;
|
|
|
|
sh.control=tab_container->get_current_tab_control();
|
|
|
|
sh.state=Variant();
|
|
|
|
|
|
|
|
history.push_back(sh);
|
|
|
|
history_pos++;
|
|
|
|
|
|
|
|
_update_history_arrows();
|
|
|
|
}
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
void ScriptEditor::_go_to_tab(int p_idx) {
|
|
|
|
|
|
|
|
Node *cn = tab_container->get_child(p_idx);
|
|
|
|
if (!cn)
|
|
|
|
return;
|
|
|
|
Control *c = cn->cast_to<Control>();
|
|
|
|
if (!c)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (history_pos>=0 && history_pos<history.size() && history[history_pos].control==tab_container->get_current_tab_control()) {
|
|
|
|
|
|
|
|
Node *n = tab_container->get_current_tab_control();
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
if (n->cast_to<ScriptEditorBase>()) {
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
history[history_pos].state=n->cast_to<ScriptEditorBase>()->get_edit_state();
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
if (n->cast_to<EditorHelp>()) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
history[history_pos].state=n->cast_to<EditorHelp>()->get_scroll();
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
history.resize(history_pos+1);
|
|
|
|
ScriptHistory sh;
|
|
|
|
sh.control=c;
|
2016-08-03 00:11:05 +02:00
|
|
|
sh.state=Variant();
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
history.push_back(sh);
|
|
|
|
history_pos++;
|
|
|
|
|
|
|
|
|
|
|
|
tab_container->set_current_tab(p_idx);
|
|
|
|
|
|
|
|
c = tab_container->get_current_tab_control();
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
if (c->cast_to<ScriptEditorBase>()) {
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
script_name_label->set_text(c->cast_to<ScriptEditorBase>()->get_name());
|
|
|
|
script_icon->set_texture(c->cast_to<ScriptEditorBase>()->get_icon());
|
2015-11-17 13:46:08 +01:00
|
|
|
if (is_visible())
|
2016-08-03 00:11:05 +02:00
|
|
|
c->cast_to<ScriptEditorBase>()->ensure_focus();
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
if (c->cast_to<EditorHelp>()) {
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
script_name_label->set_text(c->cast_to<EditorHelp>()->get_class());
|
2015-11-17 13:46:08 +01:00
|
|
|
script_icon->set_texture(get_icon("Help","EditorIcons"));
|
|
|
|
if (is_visible())
|
|
|
|
c->cast_to<EditorHelp>()->set_focused();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
c->set_meta("__editor_pass",++edit_pass);
|
|
|
|
_update_history_arrows();
|
2016-08-03 00:11:05 +02:00
|
|
|
_update_script_colors();
|
|
|
|
_update_selected_editor_menu();
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
|
2016-07-07 01:35:49 +02:00
|
|
|
void ScriptEditor::_close_tab(int p_idx) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-07-07 01:35:49 +02:00
|
|
|
int selected = p_idx;
|
2014-02-10 02:10:30 +01:00
|
|
|
if (selected<0 || selected>=tab_container->get_child_count())
|
|
|
|
return;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
Node *tselected = tab_container->get_child(selected);
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *current = tab_container->get_child(selected)->cast_to<ScriptEditorBase>();
|
2015-11-17 13:46:08 +01:00
|
|
|
if (current) {
|
|
|
|
apply_scripts();
|
2016-08-03 00:11:05 +02:00
|
|
|
if (current->get_edit_menu()) {
|
|
|
|
memdelete(current->get_edit_menu());
|
|
|
|
}
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
//remove from history
|
|
|
|
history.resize(history_pos+1);
|
|
|
|
|
|
|
|
for(int i=0;i<history.size();i++) {
|
|
|
|
if (history[i].control==tselected) {
|
|
|
|
history.remove(i);
|
|
|
|
i--;
|
|
|
|
history_pos--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (history_pos>=history.size()) {
|
|
|
|
history_pos=history.size()-1;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
int idx = tab_container->get_current_tab();
|
2015-11-17 13:46:08 +01:00
|
|
|
memdelete(tselected);
|
2014-02-10 02:10:30 +01:00
|
|
|
if (idx>=tab_container->get_child_count())
|
|
|
|
idx=tab_container->get_child_count()-1;
|
2015-06-22 05:03:19 +02:00
|
|
|
if (idx>=0) {
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
if (history_pos>=0) {
|
|
|
|
idx = history[history_pos].control->get_index();
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
tab_container->set_current_tab(idx);
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
//script_list->select(idx);
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
_update_history_arrows();
|
|
|
|
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
|
|
|
|
_update_script_names();
|
2016-07-18 17:30:43 +02:00
|
|
|
_save_layout();
|
2016-07-07 01:35:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_close_current_tab() {
|
|
|
|
|
|
|
|
_close_tab(tab_container->get_current_tab());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-07-18 00:18:48 +02:00
|
|
|
void ScriptEditor::_close_docs_tab() {
|
|
|
|
|
|
|
|
int child_count = tab_container->get_child_count();
|
|
|
|
for (int i = child_count-1; i>=0; i--) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
EditorHelp *se = tab_container->get_child(i)->cast_to<EditorHelp>();
|
2016-07-18 00:18:48 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
if (se) {
|
2016-07-18 00:18:48 +02:00
|
|
|
_close_tab(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-13 02:56:38 +02:00
|
|
|
void ScriptEditor::_close_all_tabs() {
|
|
|
|
|
|
|
|
int child_count = tab_container->get_child_count();
|
|
|
|
for (int i = child_count-1; i>=0; i--) {
|
|
|
|
|
|
|
|
tab_container->set_current_tab(i);
|
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
|
|
|
|
if (se) {
|
|
|
|
|
|
|
|
// Maybe there are unsaved changes
|
|
|
|
if (se->is_unsaved()) {
|
|
|
|
_ask_close_current_unsaved_tab(se);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
_close_current_tab();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_ask_close_current_unsaved_tab(ScriptEditorBase *current) {
|
|
|
|
erase_tab_confirm->set_text("Close and save changes?\n\""+current->get_name()+"\"");
|
|
|
|
erase_tab_confirm->popup_centered_minsize();
|
|
|
|
}
|
2016-07-18 00:18:48 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void ScriptEditor::_resave_scripts(const String& p_str) {
|
|
|
|
|
|
|
|
apply_scripts();
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
Ref<Script> script = se->get_edited_script();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (script->get_path()=="" || script->get_path().find("local://")!=-1 || script->get_path().find("::")!=-1)
|
|
|
|
continue; //internal script, who cares
|
|
|
|
|
2016-04-23 20:21:34 +02:00
|
|
|
if (trim_trailing_whitespace_on_save) {
|
2016-08-03 00:11:05 +02:00
|
|
|
se->trim_trailing_whitespace();
|
2016-04-23 20:21:34 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
editor->save_resource(script);
|
2016-08-03 00:11:05 +02:00
|
|
|
se->tag_saved_version();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
disk_changed->hide();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_reload_scripts(){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
Ref<Script> script = se->get_edited_script();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (script->get_path()=="" || script->get_path().find("local://")!=-1 || script->get_path().find("::")!=-1) {
|
|
|
|
|
|
|
|
continue; //internal script, who cares
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-07-09 17:12:03 +02:00
|
|
|
uint64_t last_date = script->get_last_modified_time();
|
|
|
|
uint64_t date = FileAccess::get_modified_time(script->get_path());
|
|
|
|
|
|
|
|
//printf("last date: %lli vs date: %lli\n",last_date,date);
|
|
|
|
if (last_date==date) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
Ref<Script> rel_script = ResourceLoader::load(script->get_path(),script->get_class(),true);
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_CONTINUE(!rel_script.is_valid());
|
|
|
|
script->set_source_code( rel_script->get_source_code() );
|
|
|
|
script->set_last_modified_time( rel_script->get_last_modified_time() );
|
|
|
|
script->reload();
|
2016-08-03 00:11:05 +02:00
|
|
|
se->reload_text();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
disk_changed->hide();
|
2015-12-09 13:08:41 +01:00
|
|
|
_update_script_names();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ScriptEditor::_res_saved_callback(const Ref<Resource>& p_res) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
Ref<Script> script = se->get_edited_script();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (script->get_path()=="" || script->get_path().find("local://")!=-1 || script->get_path().find("::")!=-1) {
|
|
|
|
continue; //internal script, who cares
|
|
|
|
}
|
|
|
|
|
|
|
|
if (script==p_res) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
se->tag_saved_version();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
_update_script_names();
|
|
|
|
|
2016-06-03 17:34:11 +02:00
|
|
|
|
|
|
|
if (!pending_auto_reload && auto_reload_running_scripts) {
|
|
|
|
call_deferred("_live_auto_reload_running_scripts");
|
|
|
|
pending_auto_reload=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_live_auto_reload_running_scripts() {
|
|
|
|
pending_auto_reload=false;
|
|
|
|
debugger->reload_scripts();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-06-03 17:34:11 +02:00
|
|
|
|
2016-06-20 03:07:07 +02:00
|
|
|
bool ScriptEditor::_test_script_times_on_disk(Ref<Script> p_for_script) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
disk_changed_list->clear();
|
|
|
|
TreeItem *r = disk_changed_list->create_item();
|
|
|
|
disk_changed_list->set_hide_root(true);
|
|
|
|
|
2015-12-09 13:08:41 +01:00
|
|
|
bool need_ask=false;
|
|
|
|
bool need_reload=false;
|
2017-01-05 23:41:36 +01:00
|
|
|
bool use_autoreload=bool(EDITOR_DEF("text_editor/files/auto_reload_scripts_on_external_change",false));
|
2015-12-09 13:08:41 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (se) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
Ref<Script> script = se->get_edited_script();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-06-20 03:07:07 +02:00
|
|
|
if (p_for_script.is_valid() && p_for_script!=script)
|
|
|
|
continue;
|
|
|
|
|
2015-12-09 13:08:41 +01:00
|
|
|
if (script->get_path()=="" || script->get_path().find("local://")!=-1 || script->get_path().find("::")!=-1)
|
|
|
|
continue; //internal script, who cares
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
2015-12-09 13:08:41 +01:00
|
|
|
uint64_t last_date = script->get_last_modified_time();
|
|
|
|
uint64_t date = FileAccess::get_modified_time(script->get_path());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-12-09 13:08:41 +01:00
|
|
|
//printf("last date: %lli vs date: %lli\n",last_date,date);
|
|
|
|
if (last_date!=date) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-12-09 13:08:41 +01:00
|
|
|
TreeItem *ti = disk_changed_list->create_item(r);
|
|
|
|
ti->set_text(0,script->get_path().get_file());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
if (!use_autoreload || se->is_unsaved()) {
|
2015-12-09 13:08:41 +01:00
|
|
|
need_ask=true;
|
|
|
|
}
|
|
|
|
need_reload=true;
|
|
|
|
//r->set_metadata(0,);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-09 13:08:41 +01:00
|
|
|
if (need_reload) {
|
|
|
|
if (!need_ask) {
|
2015-01-10 18:55:12 +01:00
|
|
|
script_editor->_reload_scripts();
|
2015-12-09 13:08:41 +01:00
|
|
|
need_reload=false;
|
2015-02-17 03:58:41 +01:00
|
|
|
} else {
|
2015-01-10 18:55:12 +01:00
|
|
|
disk_changed->call_deferred("popup_centered_ratio",0.5);
|
2015-02-17 03:58:41 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-12-09 13:08:41 +01:00
|
|
|
return need_reload;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-07-15 16:02:55 +02:00
|
|
|
|
2016-04-12 16:45:31 +02:00
|
|
|
void ScriptEditor::_file_dialog_action(String p_file) {
|
|
|
|
|
|
|
|
switch (file_dialog_option) {
|
|
|
|
case FILE_SAVE_THEME_AS: {
|
|
|
|
if(!EditorSettings::get_singleton()->save_text_editor_theme_as(p_file)) {
|
|
|
|
editor->show_warning(TTR("Error while saving theme"), TTR("Error saving"));
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case FILE_IMPORT_THEME: {
|
|
|
|
if(!EditorSettings::get_singleton()->import_text_editor_theme(p_file)) {
|
|
|
|
editor->show_warning(TTR("Error importing theme"), TTR("Error importing"));
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
file_dialog_option = -1;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void ScriptEditor::_menu_option(int p_option) {
|
|
|
|
|
|
|
|
|
|
|
|
switch(p_option) {
|
2015-08-10 01:39:59 +02:00
|
|
|
case FILE_NEW: {
|
|
|
|
script_create_dialog->config("Node", ".gd");
|
2016-05-30 05:28:29 +02:00
|
|
|
script_create_dialog->popup_centered(Size2(300, 300)*EDSCALE);
|
2015-08-10 01:39:59 +02:00
|
|
|
} break;
|
2015-11-17 13:46:08 +01:00
|
|
|
case FILE_OPEN: {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
editor->open_resource("Script");
|
|
|
|
return;
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
case FILE_SAVE_ALL: {
|
|
|
|
|
2016-10-02 20:39:15 +02:00
|
|
|
if (_test_script_times_on_disk())
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
|
2016-02-03 01:10:52 +01:00
|
|
|
save_all_scripts();
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
2016-04-12 16:45:31 +02:00
|
|
|
case FILE_IMPORT_THEME: {
|
|
|
|
file_dialog->set_mode(EditorFileDialog::MODE_OPEN_FILE);
|
|
|
|
file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
|
|
|
|
file_dialog_option = FILE_IMPORT_THEME;
|
|
|
|
file_dialog->clear_filters();
|
|
|
|
file_dialog->add_filter("*.tet");
|
|
|
|
file_dialog->popup_centered_ratio();
|
|
|
|
file_dialog->set_title(TTR("Import Theme"));
|
|
|
|
} break;
|
|
|
|
case FILE_RELOAD_THEME: {
|
|
|
|
EditorSettings::get_singleton()->load_text_editor_theme();
|
|
|
|
} break;
|
|
|
|
case FILE_SAVE_THEME: {
|
|
|
|
if(!EditorSettings::get_singleton()->save_text_editor_theme()) {
|
|
|
|
editor->show_warning(TTR("Error while saving theme"), TTR("Error saving"));
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case FILE_SAVE_THEME_AS: {
|
|
|
|
file_dialog->set_mode(EditorFileDialog::MODE_SAVE_FILE);
|
|
|
|
file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
|
|
|
|
file_dialog_option = FILE_SAVE_THEME_AS;
|
|
|
|
file_dialog->clear_filters();
|
|
|
|
file_dialog->add_filter("*.tet");
|
2017-01-05 23:41:36 +01:00
|
|
|
file_dialog->set_current_path(EditorSettings::get_singleton()->get_settings_path() + "/text_editor_themes/" + EditorSettings::get_singleton()->get("text_editor/theme/color_theme"));
|
2016-04-12 16:45:31 +02:00
|
|
|
file_dialog->popup_centered_ratio();
|
|
|
|
file_dialog->set_title(TTR("Save Theme As.."));
|
|
|
|
} break;
|
2015-11-17 13:46:08 +01:00
|
|
|
case SEARCH_HELP: {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-24 22:33:26 +01:00
|
|
|
help_search_dialog->popup();
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
2015-11-17 13:46:08 +01:00
|
|
|
case SEARCH_CLASSES: {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
String current;
|
2014-05-24 06:35:47 +02:00
|
|
|
|
2015-11-24 22:59:44 +01:00
|
|
|
if (tab_container->get_tab_count()>0) {
|
|
|
|
EditorHelp *eh = tab_container->get_child( tab_container->get_current_tab() )->cast_to<EditorHelp>();
|
|
|
|
if (eh) {
|
2017-01-03 03:03:46 +01:00
|
|
|
current=eh->get_class();
|
2015-11-24 22:59:44 +01:00
|
|
|
}
|
2014-05-24 06:35:47 +02:00
|
|
|
}
|
|
|
|
|
2016-03-05 11:51:09 +01:00
|
|
|
help_index->popup();
|
2014-05-24 06:35:47 +02:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
if (current!="") {
|
|
|
|
help_index->call_deferred("select_class",current);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
2015-11-17 13:46:08 +01:00
|
|
|
case SEARCH_WEBSITE: {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-02-20 14:01:34 +01:00
|
|
|
OS::get_singleton()->shell_open("http://docs.godotengine.org/");
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
case WINDOW_NEXT: {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
_history_forward();
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
2015-11-17 13:46:08 +01:00
|
|
|
case WINDOW_PREV: {
|
|
|
|
_history_back();
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
2015-12-12 14:09:50 +01:00
|
|
|
case DEBUG_SHOW: {
|
|
|
|
if (debugger) {
|
|
|
|
bool visible = debug_menu->get_popup()->is_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW) );
|
|
|
|
debug_menu->get_popup()->set_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW), !visible);
|
|
|
|
if (visible)
|
|
|
|
debugger->hide();
|
|
|
|
else
|
|
|
|
debugger->show();
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case DEBUG_SHOW_KEEP_OPEN: {
|
|
|
|
bool visible = debug_menu->get_popup()->is_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW_KEEP_OPEN) );
|
|
|
|
if (debugger)
|
|
|
|
debugger->set_hide_on_stop(visible);
|
|
|
|
debug_menu->get_popup()->set_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW_KEEP_OPEN), !visible);
|
|
|
|
} break;
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
int selected = tab_container->get_current_tab();
|
|
|
|
if (selected<0 || selected>=tab_container->get_child_count())
|
|
|
|
return;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *current = tab_container->get_child(selected)->cast_to<ScriptEditorBase>();
|
2015-11-17 13:46:08 +01:00
|
|
|
if (current) {
|
|
|
|
|
|
|
|
switch(p_option) {
|
|
|
|
case FILE_NEW: {
|
|
|
|
script_create_dialog->config("Node", ".gd");
|
2016-05-30 05:28:29 +02:00
|
|
|
script_create_dialog->popup_centered(Size2(300, 300)*EDSCALE);
|
2015-11-17 13:46:08 +01:00
|
|
|
} break;
|
|
|
|
case FILE_SAVE: {
|
2016-01-23 18:44:37 +01:00
|
|
|
|
|
|
|
if (_test_script_times_on_disk())
|
2015-11-17 13:46:08 +01:00
|
|
|
return;
|
2016-01-23 18:44:37 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
if (trim_trailing_whitespace_on_save)
|
|
|
|
current->trim_trailing_whitespace();
|
2015-11-17 13:46:08 +01:00
|
|
|
editor->save_resource( current->get_edited_script() );
|
|
|
|
|
|
|
|
} break;
|
|
|
|
case FILE_SAVE_AS: {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
current->trim_trailing_whitespace();
|
2016-06-22 18:39:02 +02:00
|
|
|
editor->push_item(current->get_edited_script()->cast_to<Object>());
|
2015-11-17 13:46:08 +01:00
|
|
|
editor->save_resource_as( current->get_edited_script() );
|
|
|
|
|
|
|
|
} break;
|
|
|
|
|
2016-06-09 01:00:02 +02:00
|
|
|
case FILE_TOOL_RELOAD:
|
|
|
|
case FILE_TOOL_RELOAD_SOFT: {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
current->reload(p_option==FILE_TOOL_RELOAD_SOFT);
|
2016-07-19 00:24:38 +02:00
|
|
|
|
2016-04-23 20:21:34 +02:00
|
|
|
} break;
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
case FILE_CLOSE: {
|
|
|
|
if (current->is_unsaved()) {
|
2016-08-13 02:56:38 +02:00
|
|
|
_ask_close_current_unsaved_tab(current);
|
2016-05-27 16:29:04 +02:00
|
|
|
} else {
|
2016-08-03 00:11:05 +02:00
|
|
|
_close_current_tab();
|
2016-05-27 16:29:04 +02:00
|
|
|
}
|
|
|
|
} break;
|
2016-08-03 00:11:05 +02:00
|
|
|
case CLOSE_DOCS: {
|
|
|
|
_close_docs_tab();
|
2016-05-27 16:29:04 +02:00
|
|
|
} break;
|
2016-08-13 02:56:38 +02:00
|
|
|
case CLOSE_ALL: {
|
|
|
|
_close_all_tabs();
|
|
|
|
} break;
|
2015-11-17 13:46:08 +01:00
|
|
|
case DEBUG_NEXT: {
|
|
|
|
|
|
|
|
if (debugger)
|
|
|
|
debugger->debug_next();
|
|
|
|
} break;
|
|
|
|
case DEBUG_STEP: {
|
|
|
|
|
|
|
|
if (debugger)
|
|
|
|
debugger->debug_step();
|
|
|
|
|
|
|
|
} break;
|
|
|
|
case DEBUG_BREAK: {
|
|
|
|
|
|
|
|
if (debugger)
|
|
|
|
debugger->debug_break();
|
|
|
|
|
|
|
|
} break;
|
|
|
|
case DEBUG_CONTINUE: {
|
|
|
|
|
|
|
|
if (debugger)
|
|
|
|
debugger->debug_continue();
|
|
|
|
|
|
|
|
} break;
|
|
|
|
case WINDOW_MOVE_LEFT: {
|
|
|
|
|
|
|
|
if (tab_container->get_current_tab()>0) {
|
|
|
|
tab_container->call_deferred("set_current_tab",tab_container->get_current_tab()-1);
|
|
|
|
script_list->call_deferred("select",tab_container->get_current_tab()-1);
|
|
|
|
tab_container->move_child(current,tab_container->get_current_tab()-1);
|
|
|
|
_update_script_names();
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case WINDOW_MOVE_RIGHT: {
|
|
|
|
|
|
|
|
if (tab_container->get_current_tab()<tab_container->get_child_count()-1) {
|
|
|
|
tab_container->call_deferred("set_current_tab",tab_container->get_current_tab()+1);
|
|
|
|
script_list->call_deferred("select",tab_container->get_current_tab()+1);
|
|
|
|
tab_container->move_child(current,tab_container->get_current_tab()+1);
|
|
|
|
_update_script_names();
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
} break;
|
|
|
|
|
|
|
|
default: {
|
|
|
|
|
|
|
|
if (p_option>=WINDOW_SELECT_BASE) {
|
|
|
|
|
|
|
|
tab_container->set_current_tab(p_option-WINDOW_SELECT_BASE);
|
|
|
|
script_list->select(p_option-WINDOW_SELECT_BASE);
|
|
|
|
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 22:20:54 +01:00
|
|
|
EditorHelp *help = tab_container->get_current_tab_control()->cast_to<EditorHelp>();
|
2015-11-17 13:46:08 +01:00
|
|
|
if (help) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
switch(p_option) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
case HELP_SEARCH_FIND: {
|
2015-11-17 13:46:08 +01:00
|
|
|
help->popup_search();
|
|
|
|
} break;
|
2016-08-03 00:11:05 +02:00
|
|
|
case HELP_SEARCH_FIND_NEXT: {
|
2015-11-17 13:46:08 +01:00
|
|
|
help->search_again();
|
|
|
|
} break;
|
|
|
|
case FILE_CLOSE: {
|
|
|
|
_close_current_tab();
|
|
|
|
} break;
|
2016-07-18 00:18:48 +02:00
|
|
|
case CLOSE_DOCS: {
|
|
|
|
_close_docs_tab();
|
|
|
|
} break;
|
2016-08-13 02:56:38 +02:00
|
|
|
case CLOSE_ALL: {
|
|
|
|
_close_all_tabs();
|
|
|
|
} break;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_tab_changed(int p_which) {
|
|
|
|
|
|
|
|
ensure_select_current();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_notification(int p_what) {
|
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
if (p_what==NOTIFICATION_ENTER_TREE) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
editor->connect("play_pressed",this,"_editor_play");
|
|
|
|
editor->connect("pause_pressed",this,"_editor_pause");
|
|
|
|
editor->connect("stop_pressed",this,"_editor_stop");
|
|
|
|
editor->connect("script_add_function_request",this,"_add_callback");
|
|
|
|
editor->connect("resource_saved",this,"_res_saved_callback");
|
2015-06-22 05:03:19 +02:00
|
|
|
script_list->connect("item_selected",this,"_script_selected");
|
|
|
|
script_split->connect("dragged",this,"_script_split_dragged");
|
2015-05-05 04:32:40 +02:00
|
|
|
autosave_timer->connect("timeout",this,"_autosave_scripts");
|
|
|
|
{
|
2017-01-05 23:41:36 +01:00
|
|
|
float autosave_time = EditorSettings::get_singleton()->get("text_editor/files/autosave_interval_secs");
|
2015-05-05 04:32:40 +02:00
|
|
|
if (autosave_time>0) {
|
|
|
|
autosave_timer->set_wait_time(autosave_time);
|
|
|
|
autosave_timer->start();
|
|
|
|
} else {
|
|
|
|
autosave_timer->stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EditorSettings::get_singleton()->connect("settings_changed",this,"_editor_settings_changed");
|
2015-11-17 13:46:08 +01:00
|
|
|
help_search->set_icon(get_icon("Help","EditorIcons"));
|
|
|
|
site_search->set_icon(get_icon("Godot","EditorIcons"));
|
|
|
|
class_search->set_icon(get_icon("ClassList","EditorIcons"));
|
|
|
|
|
|
|
|
script_forward->set_icon(get_icon("Forward","EditorIcons"));
|
|
|
|
script_back->set_icon(get_icon("Back","EditorIcons"));
|
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_what==NOTIFICATION_READY) {
|
2015-06-22 05:03:19 +02:00
|
|
|
|
|
|
|
get_tree()->connect("tree_changed",this,"_tree_changed");
|
2015-11-25 00:08:39 +01:00
|
|
|
editor->connect("request_help",this,"_request_help");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
if (p_what==NOTIFICATION_EXIT_TREE) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
editor->disconnect("play_pressed",this,"_editor_play");
|
|
|
|
editor->disconnect("pause_pressed",this,"_editor_pause");
|
|
|
|
editor->disconnect("stop_pressed",this,"_editor_stop");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_what==MainLoop::NOTIFICATION_WM_FOCUS_IN) {
|
|
|
|
|
|
|
|
_test_script_times_on_disk();
|
2015-12-09 13:08:41 +01:00
|
|
|
_update_modified_scripts_for_external_editor();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (p_what==NOTIFICATION_PROCESS) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-25 22:45:20 +02:00
|
|
|
bool ScriptEditor::can_take_away_focus() const {
|
|
|
|
|
|
|
|
int selected = tab_container->get_current_tab();
|
|
|
|
if (selected<0 || selected>=tab_container->get_child_count())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
ScriptEditorBase *current = tab_container->get_child(selected)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!current)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
|
|
return current->can_lose_focus_on_node_selection();
|
|
|
|
|
|
|
|
}
|
2016-07-07 01:35:49 +02:00
|
|
|
|
|
|
|
void ScriptEditor::close_builtin_scripts_from_scene(const String& p_scene) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
2016-07-07 01:35:49 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
if (se) {
|
2016-07-07 01:35:49 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
Ref<Script> script = se->get_edited_script();
|
2016-07-07 01:35:49 +02:00
|
|
|
if (!script.is_valid())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (script->get_path().find("::")!=-1 && script->get_path().begins_with(p_scene)) { //is an internal script and belongs to scene being closed
|
|
|
|
_close_tab(i);
|
|
|
|
i--;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-12-09 13:08:41 +01:00
|
|
|
void ScriptEditor::edited_scene_changed() {
|
|
|
|
|
|
|
|
_update_modified_scripts_for_external_editor();
|
|
|
|
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
static const Node * _find_node_with_script(const Node* p_node, const RefPtr & p_script) {
|
|
|
|
|
|
|
|
if (p_node->get_script()==p_script)
|
|
|
|
return p_node;
|
|
|
|
|
|
|
|
for(int i=0;i<p_node->get_child_count();i++) {
|
|
|
|
|
|
|
|
const Node *result = _find_node_with_script(p_node->get_child(i),p_script);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
Dictionary ScriptEditor::get_state() const {
|
|
|
|
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
// apply_scripts();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
Dictionary state;
|
|
|
|
#if 0
|
2014-02-10 02:10:30 +01:00
|
|
|
Array paths;
|
|
|
|
int open=-1;
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptTextEditor *se = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
|
|
|
|
if (!se)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
Ref<Script> script = se->get_edited_script();
|
2014-02-10 02:10:30 +01:00
|
|
|
if (script->get_path()!="" && script->get_path().find("local://")==-1 && script->get_path().find("::")==-1) {
|
|
|
|
|
|
|
|
paths.push_back(script->get_path());
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
const Node *owner = _find_node_with_script(get_tree()->get_root(),script.get_ref_ptr());
|
2014-02-10 02:10:30 +01:00
|
|
|
if (owner)
|
|
|
|
paths.push_back(owner->get_path());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i==tab_container->get_current_tab())
|
|
|
|
open=i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (paths.size())
|
|
|
|
state["sources"]=paths;
|
|
|
|
if (open!=-1)
|
|
|
|
state["current"]=open;
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
return state;
|
|
|
|
}
|
|
|
|
void ScriptEditor::set_state(const Dictionary& p_state) {
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
#if 0
|
2014-02-10 02:10:30 +01:00
|
|
|
print_line("attempt set state: "+String(Variant(p_state)));
|
|
|
|
|
|
|
|
if (!p_state.has("sources"))
|
|
|
|
return; //bleh
|
|
|
|
|
|
|
|
Array sources = p_state["sources"];
|
|
|
|
for(int i=0;i<sources.size();i++) {
|
|
|
|
|
|
|
|
Variant source=sources[i];
|
|
|
|
|
|
|
|
Ref<Script> script;
|
|
|
|
|
|
|
|
if (source.get_type()==Variant::NODE_PATH) {
|
|
|
|
|
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
Node *owner=get_tree()->get_root()->get_node(source);
|
2014-02-10 02:10:30 +01:00
|
|
|
if (!owner)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
script = owner->get_script();
|
|
|
|
} else if (source.get_type()==Variant::STRING) {
|
|
|
|
|
|
|
|
|
|
|
|
script = ResourceLoader::load(source,"Script");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (script.is_null()) //ah well..
|
|
|
|
continue;
|
|
|
|
|
|
|
|
editor->call("_resource_selected",script);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_state.has("current")) {
|
|
|
|
tab_container->set_current_tab(p_state["current"]);
|
|
|
|
}
|
2015-06-22 05:03:19 +02:00
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
void ScriptEditor::clear() {
|
2015-11-17 13:46:08 +01:00
|
|
|
#if 0
|
2014-02-10 02:10:30 +01:00
|
|
|
List<ScriptTextEditor*> stes;
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptTextEditor *se = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
|
|
|
|
if (!se)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
2016-08-03 00:11:05 +02:00
|
|
|
stes.push_back(se);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
while(stes.size()) {
|
|
|
|
|
|
|
|
memdelete(stes.front()->get());
|
|
|
|
stes.pop_front();
|
|
|
|
}
|
|
|
|
|
|
|
|
int idx = tab_container->get_current_tab();
|
|
|
|
if (idx>=tab_container->get_child_count())
|
|
|
|
idx=tab_container->get_child_count()-1;
|
2015-06-22 05:03:19 +02:00
|
|
|
if (idx>=0) {
|
2014-02-10 02:10:30 +01:00
|
|
|
tab_container->set_current_tab(idx);
|
2015-06-22 05:03:19 +02:00
|
|
|
script_list->select( script_list->find_metadata(idx) );
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void ScriptEditor::get_breakpoints(List<String> *p_breakpoints) {
|
|
|
|
|
2016-08-07 00:00:54 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
List<int> bpoints;
|
2016-08-03 00:11:05 +02:00
|
|
|
se->get_breakpoints(&bpoints);
|
|
|
|
Ref<Script> script = se->get_edited_script();
|
2014-02-10 02:10:30 +01:00
|
|
|
String base = script->get_path();
|
|
|
|
ERR_CONTINUE( base.begins_with("local://") || base=="" );
|
|
|
|
|
|
|
|
for(List<int>::Element *E=bpoints.front();E;E=E->next()) {
|
|
|
|
|
|
|
|
p_breakpoints->push_back(base+":"+itos(E->get()+1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ScriptEditor::ensure_focus_current() {
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
if (!is_inside_tree())
|
|
|
|
return;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int cidx = tab_container->get_current_tab();
|
|
|
|
if (cidx<0 || cidx>=tab_container->get_tab_count());
|
|
|
|
Control *c = tab_container->get_child(cidx)->cast_to<Control>();
|
|
|
|
if (!c)
|
|
|
|
return;
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = c->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se)
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
2016-08-03 00:11:05 +02:00
|
|
|
se->ensure_focus();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
void ScriptEditor::_script_selected(int p_idx) {
|
|
|
|
|
|
|
|
grab_focus_block = !Input::get_singleton()->is_mouse_button_pressed(1); //amazing hack, simply amazing
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
_go_to_tab(script_list->get_item_metadata(p_idx));
|
2015-06-22 05:03:19 +02:00
|
|
|
grab_focus_block=false;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void ScriptEditor::ensure_select_current() {
|
|
|
|
|
|
|
|
|
|
|
|
if (tab_container->get_child_count() && tab_container->get_current_tab()>=0) {
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
Node *current = tab_container->get_child(tab_container->get_current_tab());
|
|
|
|
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = current->cast_to<ScriptEditorBase>();
|
|
|
|
if (se) {
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
Ref<Script> script = se->get_edited_script();
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2016-01-27 17:56:05 +01:00
|
|
|
if (!grab_focus_block && is_visible())
|
2016-08-03 00:11:05 +02:00
|
|
|
se->ensure_focus();
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
//edit_menu->show();
|
|
|
|
//search_menu->show();
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
EditorHelp *eh = current->cast_to<EditorHelp>();
|
2014-10-09 05:06:51 +02:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
if (eh) {
|
2016-08-03 00:11:05 +02:00
|
|
|
//edit_menu->hide();
|
|
|
|
//search_menu->hide();
|
|
|
|
//script_search_menu->show();
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
}
|
2015-06-22 05:03:19 +02:00
|
|
|
}
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
_update_selected_editor_menu();
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_find_scripts(Node* p_base, Node* p_current, Set<Ref<Script> > &used) {
|
|
|
|
if (p_current!=p_base && p_current->get_owner()!=p_base)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (p_current->get_script_instance()) {
|
|
|
|
Ref<Script> scr = p_current->get_script();
|
|
|
|
if (scr.is_valid())
|
|
|
|
used.insert(scr);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i=0;i<p_current->get_child_count();i++) {
|
|
|
|
_find_scripts(p_base,p_current->get_child(i),used);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
struct _ScriptEditorItemData {
|
|
|
|
|
|
|
|
String name;
|
|
|
|
Ref<Texture> icon;
|
|
|
|
int index;
|
|
|
|
String tooltip;
|
|
|
|
bool used;
|
2015-11-18 13:20:46 +01:00
|
|
|
int category;
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
bool operator<(const _ScriptEditorItemData& id) const {
|
|
|
|
|
2015-11-18 13:20:46 +01:00
|
|
|
return category==id.category?name.nocasecmp_to(id.name)<0:category<id.category;
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void ScriptEditor::_update_script_colors() {
|
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
bool script_temperature_enabled = EditorSettings::get_singleton()->get("text_editor/open_scripts/script_temperature_enabled");
|
|
|
|
bool highlight_current = EditorSettings::get_singleton()->get("text_editor/open_scripts/highlight_current_script");
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
int hist_size = EditorSettings::get_singleton()->get("text_editor/open_scripts/script_temperature_history_size");
|
|
|
|
Color hot_color=EditorSettings::get_singleton()->get("text_editor/open_scripts/script_temperature_hot_color");
|
|
|
|
Color cold_color=EditorSettings::get_singleton()->get("text_editor/open_scripts/script_temperature_cold_color");
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
for(int i=0;i<script_list->get_item_count();i++) {
|
|
|
|
|
|
|
|
int c = script_list->get_item_metadata(i);
|
|
|
|
Node *n = tab_container->get_child(c);
|
|
|
|
if (!n)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
script_list->set_item_custom_bg_color(i,Color(0,0,0,0));
|
|
|
|
|
2016-09-07 18:54:20 +02:00
|
|
|
bool current = tab_container->get_current_tab() == c;
|
|
|
|
if (current && highlight_current) {
|
2017-01-12 12:45:37 +01:00
|
|
|
script_list->set_item_custom_bg_color(i, EditorSettings::get_singleton()->get("text_editor/open_scripts/current_script_background_color"));
|
2016-09-15 16:35:25 +02:00
|
|
|
|
|
|
|
} else if (script_temperature_enabled) {
|
|
|
|
|
|
|
|
if (!n->has_meta("__editor_pass")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int pass=n->get_meta("__editor_pass");
|
|
|
|
int h = edit_pass - pass;
|
|
|
|
if (h>hist_size) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int non_zero_hist_size = ( hist_size == 0 ) ? 1 : hist_size;
|
|
|
|
float v = Math::ease((edit_pass-pass)/float(non_zero_hist_size),0.4);
|
|
|
|
|
2016-09-07 18:54:20 +02:00
|
|
|
script_list->set_item_custom_bg_color(i,hot_color.linear_interpolate(cold_color,v));
|
|
|
|
}
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
}
|
2015-06-22 05:03:19 +02:00
|
|
|
|
|
|
|
void ScriptEditor::_update_script_names() {
|
|
|
|
|
2016-07-18 17:30:43 +02:00
|
|
|
if (restoring_layout)
|
|
|
|
return;
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
waiting_update_names=false;
|
|
|
|
Set<Ref<Script> > used;
|
|
|
|
Node* edited = EditorNode::get_singleton()->get_edited_scene();
|
|
|
|
if (edited) {
|
|
|
|
_find_scripts(edited,edited,used);
|
|
|
|
}
|
|
|
|
|
|
|
|
script_list->clear();
|
2017-01-05 23:41:36 +01:00
|
|
|
bool split_script_help = EditorSettings::get_singleton()->get("text_editor/open_scripts/group_help_pages");
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
Vector<_ScriptEditorItemData> sedata;
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (se) {
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
String name = se->get_name();
|
|
|
|
Ref<Texture> icon = se->get_icon();
|
|
|
|
String tooltip = se->get_edited_script()->get_path();
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
_ScriptEditorItemData sd;
|
|
|
|
sd.icon=icon;
|
|
|
|
sd.name=name;
|
|
|
|
sd.tooltip=tooltip;
|
|
|
|
sd.index=i;
|
2016-08-03 00:11:05 +02:00
|
|
|
sd.used=used.has(se->get_edited_script());
|
2015-11-18 13:20:46 +01:00
|
|
|
sd.category=0;
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
sedata.push_back(sd);
|
|
|
|
}
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
EditorHelp *eh = tab_container->get_child(i)->cast_to<EditorHelp>();
|
|
|
|
if (eh) {
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
String name = eh->get_class();
|
2015-11-17 13:46:08 +01:00
|
|
|
Ref<Texture> icon = get_icon("Help","EditorIcons");
|
|
|
|
String tooltip = name+" Class Reference";
|
|
|
|
|
|
|
|
_ScriptEditorItemData sd;
|
|
|
|
sd.icon=icon;
|
|
|
|
sd.name=name;
|
|
|
|
sd.tooltip=tooltip;
|
|
|
|
sd.index=i;
|
|
|
|
sd.used=false;
|
2015-11-18 13:20:46 +01:00
|
|
|
sd.category=split_script_help?1:0;
|
2015-11-17 13:46:08 +01:00
|
|
|
sedata.push_back(sd);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sedata.sort();
|
|
|
|
|
|
|
|
for(int i=0;i<sedata.size();i++) {
|
|
|
|
|
|
|
|
script_list->add_item(sedata[i].name,sedata[i].icon);
|
|
|
|
int index = script_list->get_item_count()-1;
|
|
|
|
script_list->set_item_tooltip(index,sedata[i].tooltip);
|
|
|
|
script_list->set_item_metadata(index,sedata[i].index);
|
|
|
|
if (sedata[i].used) {
|
2015-06-22 05:03:19 +02:00
|
|
|
|
|
|
|
script_list->set_item_custom_bg_color(index,Color(88/255.0,88/255.0,60/255.0));
|
|
|
|
}
|
2015-11-17 13:46:08 +01:00
|
|
|
if (tab_container->get_current_tab()==sedata[i].index) {
|
2015-06-22 05:03:19 +02:00
|
|
|
script_list->select(index);
|
2015-11-17 13:46:08 +01:00
|
|
|
script_name_label->set_text(sedata[i].name);
|
|
|
|
script_icon->set_texture(sedata[i].icon);
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
_update_script_colors();
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-07-07 01:35:49 +02:00
|
|
|
|
|
|
|
|
2016-08-25 22:45:20 +02:00
|
|
|
void ScriptEditor::edit(const Ref<Script>& p_script, bool p_grab_focus) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (p_script.is_null())
|
|
|
|
return;
|
|
|
|
|
2016-07-07 01:35:49 +02:00
|
|
|
// refuse to open built-in if scene is not loaded
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
// see if already has it
|
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
bool open_dominant = EditorSettings::get_singleton()->get("text_editor/files/open_dominant_script_on_scene_change");
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
if (p_script->get_path().is_resource_file() && bool(EditorSettings::get_singleton()->get("text_editor/external/use_external_editor"))) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
String path = EditorSettings::get_singleton()->get("text_editor/external/exec_path");
|
|
|
|
String flags = EditorSettings::get_singleton()->get("text_editor/external/exec_flags");
|
2014-02-10 02:10:30 +01:00
|
|
|
List<String> args;
|
|
|
|
flags=flags.strip_edges();
|
|
|
|
if (flags!=String()) {
|
|
|
|
Vector<String> flagss = flags.split(" ",false);
|
|
|
|
for(int i=0;i<flagss.size();i++)
|
|
|
|
args.push_back(flagss[i]);
|
|
|
|
}
|
|
|
|
|
2017-01-05 13:16:00 +01:00
|
|
|
args.push_back(GlobalConfig::get_singleton()->globalize_path(p_script->get_path()));
|
2014-02-10 02:10:30 +01:00
|
|
|
Error err = OS::get_singleton()->execute(path,args,false);
|
|
|
|
if (err==OK)
|
|
|
|
return;
|
|
|
|
WARN_PRINT("Couldn't open external text editor, using internal");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
if (se->get_edited_script()==p_script) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
if (open_dominant || !EditorNode::get_singleton()->is_changing_scene()) {
|
2015-06-22 05:03:19 +02:00
|
|
|
if (tab_container->get_current_tab()!=i) {
|
2015-11-17 13:46:08 +01:00
|
|
|
_go_to_tab(i);
|
2015-06-22 05:03:19 +02:00
|
|
|
script_list->select( script_list->find_metadata(i) );
|
|
|
|
}
|
2015-11-17 13:46:08 +01:00
|
|
|
if (is_visible())
|
2016-08-03 00:11:05 +02:00
|
|
|
se->ensure_focus();
|
2015-06-22 05:03:19 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// doesn't have it, make a new one
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se;
|
|
|
|
|
|
|
|
for(int i=script_editor_func_count-1;i>=0;i--) {
|
|
|
|
se = script_editor_funcs[i](p_script);
|
|
|
|
if (se)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ERR_FAIL_COND(!se);
|
|
|
|
tab_container->add_child(se);
|
2016-09-11 15:01:52 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
se->set_edited_script(p_script);
|
|
|
|
se->set_tooltip_request_func("_get_debug_tooltip",this);
|
|
|
|
if (se->get_edit_menu()) {
|
|
|
|
se->get_edit_menu()->hide();
|
|
|
|
menu_hb->add_child(se->get_edit_menu());
|
|
|
|
menu_hb->move_child(se->get_edit_menu(),1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-25 22:45:20 +02:00
|
|
|
if (p_grab_focus) {
|
|
|
|
_go_to_tab(tab_container->get_tab_count()-1);
|
|
|
|
}
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
_update_script_names();
|
2016-07-18 17:30:43 +02:00
|
|
|
_save_layout();
|
2016-08-03 00:11:05 +02:00
|
|
|
se->connect("name_changed",this,"_update_script_names");
|
|
|
|
se->connect("request_help_search",this,"_help_search");
|
2016-09-12 15:52:29 +02:00
|
|
|
se->connect("request_open_script_at_line",this,"_goto_script_line");
|
|
|
|
se->connect("go_to_help",this,"_help_class_goto");
|
|
|
|
se->connect("request_save_history",this,"_save_history");
|
|
|
|
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
|
2016-06-20 03:07:07 +02:00
|
|
|
|
|
|
|
//test for modification, maybe the script was not edited but was loaded
|
|
|
|
|
|
|
|
_test_script_times_on_disk(p_script);
|
|
|
|
_update_modified_scripts_for_external_editor(p_script);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-02-03 01:10:52 +01:00
|
|
|
void ScriptEditor::save_all_scripts() {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
|
|
|
|
2016-04-23 20:21:34 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
if (!se->is_unsaved())
|
|
|
|
continue;
|
|
|
|
|
2016-04-23 20:21:34 +02:00
|
|
|
if (trim_trailing_whitespace_on_save) {
|
2016-08-03 00:11:05 +02:00
|
|
|
se->trim_trailing_whitespace();
|
2016-04-23 20:21:34 +02:00
|
|
|
}
|
2016-02-03 01:10:52 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
Ref<Script> script = se->get_edited_script();
|
2016-06-12 02:59:35 +02:00
|
|
|
if (script.is_valid())
|
2016-08-03 00:11:05 +02:00
|
|
|
se->apply_code();
|
2016-06-12 02:59:35 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (script->get_path()!="" && script->get_path().find("local://")==-1 &&script->get_path().find("::")==-1) {
|
|
|
|
//external script, save it
|
2016-06-12 02:59:35 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
editor->save_resource(script);
|
|
|
|
//ResourceSaver::save(script->get_path(),script);
|
2016-06-13 15:58:32 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-06-13 15:58:32 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-08-07 00:00:54 +02:00
|
|
|
_update_script_names();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::apply_scripts() const {
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
2016-08-03 00:11:05 +02:00
|
|
|
se->apply_code();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_editor_play() {
|
|
|
|
|
|
|
|
debugger->start();
|
2016-10-22 12:54:38 +02:00
|
|
|
debug_menu->get_popup()->grab_focus();
|
2014-02-10 02:10:30 +01:00
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true );
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_STEP), true );
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_BREAK), false );
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true );
|
|
|
|
|
|
|
|
//debugger_gui->start_listening(Globals::get_singleton()->get("debug/debug_port"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_editor_pause() {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
void ScriptEditor::_editor_stop() {
|
|
|
|
|
|
|
|
debugger->stop();
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true );
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_STEP), true );
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_BREAK), true );
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true );
|
2016-08-07 00:00:54 +02:00
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se) {
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
se->set_debugger_active(false);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
void ScriptEditor::_add_callback(Object *p_obj, const String& p_function, const PoolStringArray& p_args) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-06-19 01:01:06 +02:00
|
|
|
//print_line("add callback! hohoho"); kinda sad to remove this
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_FAIL_COND(!p_obj);
|
|
|
|
Ref<Script> script = p_obj->get_script();
|
|
|
|
ERR_FAIL_COND( !script.is_valid() );
|
|
|
|
|
|
|
|
editor->push_item(script.ptr());
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
2016-08-03 00:11:05 +02:00
|
|
|
if (se->get_edited_script()!=script)
|
2014-02-10 02:10:30 +01:00
|
|
|
continue;
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
se->add_callback(p_function,p_args);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
_go_to_tab(i);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
script_list->select( script_list->find_metadata(i) );
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-07-18 17:30:43 +02:00
|
|
|
void ScriptEditor::_save_layout() {
|
|
|
|
|
|
|
|
if (restoring_layout) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
editor->save_layout();
|
|
|
|
}
|
|
|
|
|
2015-05-05 04:32:40 +02:00
|
|
|
void ScriptEditor::_editor_settings_changed() {
|
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
trim_trailing_whitespace_on_save = EditorSettings::get_singleton()->get("text_editor/files/trim_trailing_whitespace_on_save");
|
|
|
|
float autosave_time = EditorSettings::get_singleton()->get("text_editor/files/autosave_interval_secs");
|
2015-05-05 04:32:40 +02:00
|
|
|
if (autosave_time>0) {
|
|
|
|
autosave_timer->set_wait_time(autosave_time);
|
|
|
|
autosave_timer->start();
|
|
|
|
} else {
|
|
|
|
autosave_timer->stop();
|
|
|
|
}
|
|
|
|
|
2016-04-12 16:45:31 +02:00
|
|
|
if (current_theme == "") {
|
2017-01-05 23:41:36 +01:00
|
|
|
current_theme = EditorSettings::get_singleton()->get("text_editor/theme/color_theme");
|
|
|
|
} else if (current_theme != EditorSettings::get_singleton()->get("text_editor/theme/color_theme")) {
|
|
|
|
current_theme = EditorSettings::get_singleton()->get("text_editor/theme/color_theme");
|
2016-04-12 16:45:31 +02:00
|
|
|
EditorSettings::get_singleton()->load_text_editor_theme();
|
|
|
|
}
|
|
|
|
|
2016-01-01 13:52:01 +01:00
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (!se)
|
2016-01-01 13:52:01 +01:00
|
|
|
continue;
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
se->update_settings();
|
2016-01-01 13:52:01 +01:00
|
|
|
}
|
2016-09-12 16:19:30 +02:00
|
|
|
_update_script_colors();
|
2016-01-01 13:52:01 +01:00
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
ScriptServer::set_reload_scripts_on_save(EDITOR_DEF("text_editor/files/auto_reload_and_parse_scripts_on_save",true));
|
2016-06-13 15:58:32 +02:00
|
|
|
|
2015-05-05 04:32:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_autosave_scripts() {
|
|
|
|
|
2016-02-03 01:10:52 +01:00
|
|
|
save_all_scripts();
|
2015-05-05 04:32:40 +02:00
|
|
|
}
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
void ScriptEditor::_tree_changed() {
|
|
|
|
|
|
|
|
if (waiting_update_names)
|
|
|
|
return;
|
|
|
|
|
|
|
|
waiting_update_names=true;
|
|
|
|
call_deferred("_update_script_names");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_script_split_dragged(float) {
|
|
|
|
|
2016-07-18 17:30:43 +02:00
|
|
|
_save_layout();
|
2015-06-22 05:03:19 +02:00
|
|
|
}
|
|
|
|
|
2016-06-26 02:02:17 +02:00
|
|
|
void ScriptEditor::_unhandled_input(const InputEvent& p_event) {
|
|
|
|
if (p_event.key.pressed || !is_visible()) return;
|
|
|
|
if (ED_IS_SHORTCUT("script_editor/next_script", p_event)) {
|
|
|
|
int next_tab = script_list->get_current() + 1;
|
|
|
|
next_tab %= script_list->get_item_count();
|
|
|
|
_go_to_tab(script_list->get_item_metadata(next_tab));
|
|
|
|
_update_script_names();
|
|
|
|
}
|
|
|
|
if (ED_IS_SHORTCUT("script_editor/prev_script", p_event)) {
|
|
|
|
int next_tab = script_list->get_current() - 1;
|
|
|
|
next_tab = next_tab >= 0 ? next_tab : script_list->get_item_count() - 1;
|
|
|
|
_go_to_tab(script_list->get_item_metadata(next_tab));
|
|
|
|
_update_script_names();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
void ScriptEditor::set_window_layout(Ref<ConfigFile> p_layout) {
|
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
if (!bool(EDITOR_DEF("text_editor/files/restore_scripts_on_load",true))) {
|
2015-06-22 05:03:19 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
if (!p_layout->has_section_key("ScriptEditor","open_scripts") && !p_layout->has_section_key("ScriptEditor","open_help"))
|
2015-06-22 05:03:19 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
Array scripts = p_layout->get_value("ScriptEditor","open_scripts");
|
2015-11-17 13:46:08 +01:00
|
|
|
Array helps;
|
|
|
|
if (p_layout->has_section_key("ScriptEditor","open_help"))
|
|
|
|
helps=p_layout->get_value("ScriptEditor","open_help");
|
2015-06-22 05:03:19 +02:00
|
|
|
|
|
|
|
restoring_layout=true;
|
|
|
|
|
|
|
|
for(int i=0;i<scripts.size();i++) {
|
|
|
|
|
|
|
|
String path = scripts[i];
|
2016-07-08 02:27:20 +02:00
|
|
|
if (!FileAccess::exists(path))
|
|
|
|
continue;
|
2015-06-22 05:03:19 +02:00
|
|
|
Ref<Script> scr = ResourceLoader::load(path);
|
|
|
|
if (scr.is_valid()) {
|
|
|
|
edit(scr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
for(int i=0;i<helps.size();i++) {
|
|
|
|
|
|
|
|
String path = helps[i];
|
|
|
|
_help_class_open(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
tab_container->get_child(i)->set_meta("__editor_pass",Variant());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
if (p_layout->has_section_key("ScriptEditor","split_offset")) {
|
|
|
|
script_split->set_split_offset(p_layout->get_value("ScriptEditor","split_offset"));
|
|
|
|
}
|
|
|
|
|
|
|
|
restoring_layout=false;
|
|
|
|
|
2016-07-18 17:30:43 +02:00
|
|
|
_update_script_names();
|
2015-06-22 05:03:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::get_window_layout(Ref<ConfigFile> p_layout) {
|
|
|
|
|
|
|
|
Array scripts;
|
2015-11-17 13:46:08 +01:00
|
|
|
Array helps;
|
2015-06-22 05:03:19 +02:00
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (se) {
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
String path = se->get_edited_script()->get_path();
|
2015-11-17 13:46:08 +01:00
|
|
|
if (!path.is_resource_file())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
scripts.push_back(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
EditorHelp *eh = tab_container->get_child(i)->cast_to<EditorHelp>();
|
|
|
|
|
|
|
|
if (eh) {
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
helps.push_back(eh->get_class());
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
2015-06-22 05:03:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
p_layout->set_value("ScriptEditor","open_scripts",scripts);
|
2015-11-17 13:46:08 +01:00
|
|
|
p_layout->set_value("ScriptEditor","open_help",helps);
|
2015-06-22 05:03:19 +02:00
|
|
|
p_layout->set_value("ScriptEditor","split_offset",script_split->get_split_offset());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
void ScriptEditor::_help_class_open(const String& p_class) {
|
|
|
|
|
2016-11-25 00:46:55 +01:00
|
|
|
if (p_class=="")
|
|
|
|
return;
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
|
|
|
EditorHelp *eh = tab_container->get_child(i)->cast_to<EditorHelp>();
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
if (eh && eh->get_class()==p_class) {
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
_go_to_tab(i);
|
|
|
|
_update_script_names();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EditorHelp * eh = memnew( EditorHelp );
|
|
|
|
|
|
|
|
|
|
|
|
eh->set_name(p_class);
|
|
|
|
tab_container->add_child(eh);
|
|
|
|
_go_to_tab(tab_container->get_tab_count()-1);
|
|
|
|
eh->go_to_class(p_class,0);
|
|
|
|
eh->connect("go_to_help",this,"_help_class_goto");
|
|
|
|
_update_script_names();
|
2016-07-18 17:30:43 +02:00
|
|
|
_save_layout();
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_help_class_goto(const String& p_desc) {
|
|
|
|
|
|
|
|
String cname=p_desc.get_slice(":",1);
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
|
|
|
EditorHelp *eh = tab_container->get_child(i)->cast_to<EditorHelp>();
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
if (eh && eh->get_class()==cname) {
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
_go_to_tab(i);
|
|
|
|
eh->go_to_help(p_desc);
|
|
|
|
_update_script_names();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EditorHelp * eh = memnew( EditorHelp );
|
|
|
|
|
|
|
|
eh->set_name(cname);
|
|
|
|
tab_container->add_child(eh);
|
|
|
|
_go_to_tab(tab_container->get_tab_count()-1);
|
|
|
|
eh->go_to_help(p_desc);
|
|
|
|
eh->connect("go_to_help",this,"_help_class_goto");
|
|
|
|
_update_script_names();
|
2016-07-18 17:30:43 +02:00
|
|
|
_save_layout();
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
void ScriptEditor::_update_selected_editor_menu() {
|
|
|
|
|
|
|
|
for(int i=0;i<tab_container->get_child_count();i++) {
|
|
|
|
|
|
|
|
bool current = tab_container->get_current_tab() == i;
|
|
|
|
|
|
|
|
ScriptEditorBase *se = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
|
|
|
if (se && se->get_edit_menu()) {
|
|
|
|
|
|
|
|
if (current)
|
|
|
|
se->get_edit_menu()->show();
|
|
|
|
else
|
|
|
|
se->get_edit_menu()->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-10-30 16:07:16 +01:00
|
|
|
EditorHelp *eh=tab_container->get_current_tab_control()->cast_to<EditorHelp>();
|
|
|
|
if (eh) {
|
|
|
|
script_search_menu->show();
|
|
|
|
} else {
|
|
|
|
script_search_menu->hide();
|
|
|
|
}
|
2016-08-03 00:11:05 +02:00
|
|
|
}
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
void ScriptEditor::_update_history_pos(int p_new_pos) {
|
|
|
|
|
|
|
|
Node *n = tab_container->get_current_tab_control();
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
if (n->cast_to<ScriptEditorBase>()) {
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
history[history_pos].state=n->cast_to<ScriptEditorBase>()->get_edit_state();
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
if (n->cast_to<EditorHelp>()) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
history[history_pos].state=n->cast_to<EditorHelp>()->get_scroll();
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
history_pos=p_new_pos;
|
|
|
|
tab_container->set_current_tab(history[history_pos].control->get_index());
|
|
|
|
|
|
|
|
n = history[history_pos].control;
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
if (n->cast_to<ScriptEditorBase>()) {
|
2015-11-17 13:46:08 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
n->cast_to<ScriptEditorBase>()->set_edit_state(history[history_pos].state);
|
|
|
|
n->cast_to<ScriptEditorBase>()->ensure_focus();
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (n->cast_to<EditorHelp>()) {
|
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
n->cast_to<EditorHelp>()->set_scroll(history[history_pos].state);
|
2015-11-17 13:46:08 +01:00
|
|
|
n->cast_to<EditorHelp>()->set_focused();
|
|
|
|
}
|
|
|
|
|
|
|
|
n->set_meta("__editor_pass",++edit_pass);
|
|
|
|
_update_script_names();
|
|
|
|
_update_history_arrows();
|
2016-08-03 00:11:05 +02:00
|
|
|
_update_selected_editor_menu();
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_history_forward() {
|
|
|
|
|
|
|
|
if (history_pos<history.size()-1) {
|
|
|
|
_update_history_pos(history_pos+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditor::_history_back(){
|
|
|
|
|
|
|
|
if (history_pos>0) {
|
|
|
|
_update_history_pos(history_pos-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
void ScriptEditor::set_scene_root_script( Ref<Script> p_script ) {
|
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
bool open_dominant = EditorSettings::get_singleton()->get("text_editor/files/open_dominant_script_on_scene_change");
|
2015-12-14 12:28:01 +01:00
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
if (bool(EditorSettings::get_singleton()->get("text_editor/external/use_external_editor")))
|
2015-12-14 12:21:18 +01:00
|
|
|
return;
|
|
|
|
|
2016-07-07 01:35:49 +02:00
|
|
|
if (open_dominant && p_script.is_valid() && _can_open_in_editor(p_script.ptr())) {
|
2015-11-17 13:46:08 +01:00
|
|
|
edit(p_script);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-12 01:01:17 +02:00
|
|
|
bool ScriptEditor::script_go_to_method(Ref<Script> p_script, const String& p_method) {
|
|
|
|
|
|
|
|
|
|
|
|
for (int i=0;i<tab_container->get_child_count();i++) {
|
2016-08-03 00:11:05 +02:00
|
|
|
ScriptEditorBase *current = tab_container->get_child(i)->cast_to<ScriptEditorBase>();
|
2016-06-12 01:01:17 +02:00
|
|
|
|
|
|
|
if (current && current->get_edited_script()==p_script) {
|
2016-08-03 00:11:05 +02:00
|
|
|
if (current->goto_method(p_method)) {
|
|
|
|
edit(p_script);
|
|
|
|
return true;
|
|
|
|
}
|
2016-06-12 01:01:17 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-08-03 00:11:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-06-12 01:01:17 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
void ScriptEditor::set_live_auto_reload_running_scripts(bool p_enabled) {
|
2016-06-12 01:01:17 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
auto_reload_running_scripts=p_enabled;
|
|
|
|
}
|
2016-06-12 01:01:17 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
void ScriptEditor::_help_search(String p_text) {
|
|
|
|
help_search_dialog->popup(p_text);
|
|
|
|
}
|
2016-06-12 01:01:17 +02:00
|
|
|
|
2016-08-25 22:45:20 +02:00
|
|
|
void ScriptEditor::_open_script_request(const String& p_path) {
|
|
|
|
|
|
|
|
Ref<Script> script = ResourceLoader::load(p_path);
|
|
|
|
if (script.is_valid()) {
|
|
|
|
script_editor->edit(script,false);
|
|
|
|
}
|
|
|
|
}
|
2016-06-12 01:01:17 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
int ScriptEditor::script_editor_func_count=0;
|
|
|
|
CreateScriptEditorFunc ScriptEditor::script_editor_funcs[ScriptEditor::SCRIPT_EDITOR_FUNC_MAX];
|
2016-06-12 01:01:17 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
void ScriptEditor::register_create_script_editor_function(CreateScriptEditorFunc p_func) {
|
2016-06-03 17:34:11 +02:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
ERR_FAIL_COND(script_editor_func_count==SCRIPT_EDITOR_FUNC_MAX);
|
|
|
|
script_editor_funcs[script_editor_func_count++]=p_func;
|
2016-06-03 17:34:11 +02:00
|
|
|
}
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
void ScriptEditor::_bind_methods() {
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method("_file_dialog_action",&ScriptEditor::_file_dialog_action);
|
|
|
|
ClassDB::bind_method("_tab_changed",&ScriptEditor::_tab_changed);
|
|
|
|
ClassDB::bind_method("_menu_option",&ScriptEditor::_menu_option);
|
|
|
|
ClassDB::bind_method("_close_current_tab",&ScriptEditor::_close_current_tab);
|
|
|
|
ClassDB::bind_method("_close_docs_tab", &ScriptEditor::_close_docs_tab);
|
|
|
|
ClassDB::bind_method("_close_all_tabs", &ScriptEditor::_close_all_tabs);
|
|
|
|
ClassDB::bind_method("_editor_play",&ScriptEditor::_editor_play);
|
|
|
|
ClassDB::bind_method("_editor_pause",&ScriptEditor::_editor_pause);
|
|
|
|
ClassDB::bind_method("_editor_stop",&ScriptEditor::_editor_stop);
|
|
|
|
ClassDB::bind_method("_add_callback",&ScriptEditor::_add_callback);
|
|
|
|
ClassDB::bind_method("_reload_scripts",&ScriptEditor::_reload_scripts);
|
|
|
|
ClassDB::bind_method("_resave_scripts",&ScriptEditor::_resave_scripts);
|
|
|
|
ClassDB::bind_method("_res_saved_callback",&ScriptEditor::_res_saved_callback);
|
|
|
|
ClassDB::bind_method("_goto_script_line",&ScriptEditor::_goto_script_line);
|
|
|
|
ClassDB::bind_method("_goto_script_line2",&ScriptEditor::_goto_script_line2);
|
|
|
|
ClassDB::bind_method("_help_search",&ScriptEditor::_help_search);
|
|
|
|
ClassDB::bind_method("_save_history",&ScriptEditor::_save_history);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ClassDB::bind_method("_breaked",&ScriptEditor::_breaked);
|
|
|
|
ClassDB::bind_method("_show_debugger",&ScriptEditor::_show_debugger);
|
|
|
|
ClassDB::bind_method("_get_debug_tooltip",&ScriptEditor::_get_debug_tooltip);
|
|
|
|
ClassDB::bind_method("_autosave_scripts",&ScriptEditor::_autosave_scripts);
|
|
|
|
ClassDB::bind_method("_editor_settings_changed",&ScriptEditor::_editor_settings_changed);
|
|
|
|
ClassDB::bind_method("_update_script_names",&ScriptEditor::_update_script_names);
|
|
|
|
ClassDB::bind_method("_tree_changed",&ScriptEditor::_tree_changed);
|
|
|
|
ClassDB::bind_method("_script_selected",&ScriptEditor::_script_selected);
|
|
|
|
ClassDB::bind_method("_script_created",&ScriptEditor::_script_created);
|
|
|
|
ClassDB::bind_method("_script_split_dragged",&ScriptEditor::_script_split_dragged);
|
|
|
|
ClassDB::bind_method("_help_class_open",&ScriptEditor::_help_class_open);
|
|
|
|
ClassDB::bind_method("_help_class_goto",&ScriptEditor::_help_class_goto);
|
|
|
|
ClassDB::bind_method("_request_help",&ScriptEditor::_help_class_open);
|
|
|
|
ClassDB::bind_method("_history_forward",&ScriptEditor::_history_forward);
|
|
|
|
ClassDB::bind_method("_history_back",&ScriptEditor::_history_back);
|
|
|
|
ClassDB::bind_method("_live_auto_reload_running_scripts",&ScriptEditor::_live_auto_reload_running_scripts);
|
|
|
|
ClassDB::bind_method("_unhandled_input",&ScriptEditor::_unhandled_input);
|
2016-06-03 17:34:11 +02:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
}
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
ScriptEditor::ScriptEditor(EditorNode *p_editor) {
|
|
|
|
|
2016-04-12 16:45:31 +02:00
|
|
|
current_theme = "";
|
|
|
|
|
2015-06-26 06:14:31 +02:00
|
|
|
completion_cache = memnew( EditorScriptCodeCompletionCache );
|
2015-06-22 05:03:19 +02:00
|
|
|
restoring_layout=false;
|
|
|
|
waiting_update_names=false;
|
2016-07-29 14:50:26 +02:00
|
|
|
pending_auto_reload=false;
|
2016-06-03 17:34:11 +02:00
|
|
|
auto_reload_running_scripts=false;
|
2014-02-10 02:10:30 +01:00
|
|
|
editor=p_editor;
|
|
|
|
|
|
|
|
menu_hb = memnew( HBoxContainer );
|
|
|
|
add_child(menu_hb);
|
|
|
|
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
script_split = memnew( HSplitContainer );
|
2016-01-18 00:03:57 +01:00
|
|
|
add_child(script_split);
|
2015-06-22 05:03:19 +02:00
|
|
|
script_split->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
|
|
|
|
script_list = memnew( ItemList );
|
|
|
|
script_split->add_child(script_list);
|
2016-01-13 16:47:10 +01:00
|
|
|
script_list->set_custom_minimum_size(Size2(0,0));
|
2016-01-20 13:01:27 +01:00
|
|
|
script_split->set_split_offset(140);
|
2015-06-22 05:03:19 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
tab_container = memnew( TabContainer );
|
2015-06-22 05:03:19 +02:00
|
|
|
tab_container->set_tabs_visible(false);
|
|
|
|
script_split->add_child(tab_container);
|
|
|
|
|
|
|
|
|
|
|
|
tab_container->set_h_size_flags(SIZE_EXPAND_FILL);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-06-26 02:02:17 +02:00
|
|
|
ED_SHORTCUT("script_editor/next_script", TTR("Next script"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_GREATER);
|
|
|
|
ED_SHORTCUT("script_editor/prev_script", TTR("Previous script"), KEY_MASK_CMD | KEY_LESS);
|
|
|
|
set_process_unhandled_input(true);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
file_menu = memnew( MenuButton );
|
|
|
|
menu_hb->add_child(file_menu);
|
2016-05-04 03:25:37 +02:00
|
|
|
file_menu->set_text(TTR("File"));
|
2016-06-11 23:18:55 +02:00
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/new", TTR("New")), FILE_NEW);
|
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/open", TTR("Open")), FILE_OPEN);
|
2015-06-22 05:03:19 +02:00
|
|
|
file_menu->get_popup()->add_separator();
|
2016-06-11 23:18:55 +02:00
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save", TTR("Save"), KEY_MASK_ALT|KEY_MASK_CMD|KEY_S), FILE_SAVE);
|
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_as", TTR("Save As..")), FILE_SAVE_AS);
|
2016-06-20 21:16:41 +02:00
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_all", TTR("Save All"), KEY_MASK_CMD|KEY_MASK_SHIFT|KEY_MASK_ALT|KEY_S), FILE_SAVE_ALL);
|
2015-06-22 05:03:19 +02:00
|
|
|
file_menu->get_popup()->add_separator();
|
2016-08-03 00:11:05 +02:00
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/reload_script_soft", TTR("Soft Reload Script"), KEY_MASK_CMD|KEY_MASK_SHIFT|KEY_R), FILE_TOOL_RELOAD_SOFT);
|
|
|
|
file_menu->get_popup()->add_separator();
|
|
|
|
|
2016-09-11 17:27:14 +02:00
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/history_previous", TTR("History Prev"), KEY_MASK_ALT|KEY_LEFT), WINDOW_PREV);
|
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/history_next", TTR("History Next"), KEY_MASK_ALT|KEY_RIGHT), WINDOW_NEXT);
|
2015-11-17 13:46:08 +01:00
|
|
|
file_menu->get_popup()->add_separator();
|
2016-06-11 23:18:55 +02:00
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/import_theme", TTR("Import Theme")), FILE_IMPORT_THEME);
|
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/reload_theme", TTR("Reload Theme")), FILE_RELOAD_THEME);
|
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_theme", TTR("Save Theme")), FILE_SAVE_THEME);
|
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_theme_as", TTR("Save Theme As")), FILE_SAVE_THEME_AS);
|
2016-04-12 16:45:31 +02:00
|
|
|
file_menu->get_popup()->add_separator();
|
2016-07-18 00:18:48 +02:00
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_docs", TTR("Close Docs")), CLOSE_DOCS);
|
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_file", TTR("Close"), KEY_MASK_CMD | KEY_W), FILE_CLOSE);
|
2016-08-13 02:56:38 +02:00
|
|
|
file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_all", TTR("Close All")), CLOSE_ALL);
|
2017-01-08 22:18:54 +01:00
|
|
|
file_menu->get_popup()->connect("id_pressed", this,"_menu_option");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-08-03 00:11:05 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
script_search_menu = memnew( MenuButton );
|
|
|
|
menu_hb->add_child(script_search_menu);
|
2016-05-04 03:25:37 +02:00
|
|
|
script_search_menu->set_text(TTR("Search"));
|
2016-08-03 00:11:05 +02:00
|
|
|
script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find", TTR("Find.."), KEY_MASK_CMD|KEY_F), HELP_SEARCH_FIND);
|
|
|
|
script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find_next", TTR("Find Next"), KEY_F3), HELP_SEARCH_FIND_NEXT);
|
2017-01-08 22:18:54 +01:00
|
|
|
script_search_menu->get_popup()->connect("id_pressed", this,"_menu_option");
|
2015-11-17 13:46:08 +01:00
|
|
|
script_search_menu->hide();
|
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
debug_menu = memnew( MenuButton );
|
|
|
|
menu_hb->add_child(debug_menu);
|
2016-05-04 03:25:37 +02:00
|
|
|
debug_menu->set_text(TTR("Debug"));
|
2014-02-10 02:10:30 +01:00
|
|
|
debug_menu->get_popup()->add_separator();
|
2016-06-11 23:18:55 +02:00
|
|
|
debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_over", TTR("Step Over"), KEY_F10), DEBUG_NEXT);
|
|
|
|
debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_into", TTR("Step Into"), KEY_F11), DEBUG_STEP);
|
2014-02-10 02:10:30 +01:00
|
|
|
debug_menu->get_popup()->add_separator();
|
2016-06-11 23:18:55 +02:00
|
|
|
debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/break", TTR("Break")), DEBUG_BREAK);
|
|
|
|
debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/continue", TTR("Continue")), DEBUG_CONTINUE);
|
2014-02-10 02:10:30 +01:00
|
|
|
debug_menu->get_popup()->add_separator();
|
2016-05-21 01:18:35 +02:00
|
|
|
//debug_menu->get_popup()->add_check_item("Show Debugger",DEBUG_SHOW);
|
2016-06-11 23:18:55 +02:00
|
|
|
debug_menu->get_popup()->add_check_shortcut(ED_SHORTCUT("debugger/keep_debugger_open", TTR("Keep Debugger Open")), DEBUG_SHOW_KEEP_OPEN);
|
2017-01-08 22:18:54 +01:00
|
|
|
debug_menu->get_popup()->connect("id_pressed", this,"_menu_option");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true);
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_STEP), true );
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_BREAK), true );
|
|
|
|
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true );
|
|
|
|
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
#if 0
|
2014-02-10 02:10:30 +01:00
|
|
|
window_menu = memnew( MenuButton );
|
|
|
|
menu_hb->add_child(window_menu);
|
2016-05-04 03:25:37 +02:00
|
|
|
window_menu->set_text(TTR("Window"));
|
|
|
|
window_menu->get_popup()->add_item(TTR("Close"),WINDOW_CLOSE,KEY_MASK_CMD|KEY_W);
|
2014-02-10 02:10:30 +01:00
|
|
|
window_menu->get_popup()->add_separator();
|
2016-05-04 03:25:37 +02:00
|
|
|
window_menu->get_popup()->add_item(TTR("Move Left"),WINDOW_MOVE_LEFT,KEY_MASK_CMD|KEY_LEFT);
|
|
|
|
window_menu->get_popup()->add_item(TTR("Move Right"),WINDOW_MOVE_RIGHT,KEY_MASK_CMD|KEY_RIGHT);
|
2014-02-10 02:10:30 +01:00
|
|
|
window_menu->get_popup()->add_separator();
|
2017-01-08 22:18:54 +01:00
|
|
|
window_menu->get_popup()->connect("id_pressed", this,"_menu_option");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
#endif
|
|
|
|
|
2014-05-05 15:59:18 +02:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
menu_hb->add_spacer();
|
|
|
|
|
|
|
|
|
|
|
|
script_icon = memnew( TextureFrame );
|
|
|
|
menu_hb->add_child(script_icon);
|
|
|
|
script_name_label = memnew( Label );
|
|
|
|
menu_hb->add_child(script_name_label);
|
|
|
|
|
|
|
|
script_icon->hide();
|
|
|
|
script_name_label->hide();
|
|
|
|
|
|
|
|
menu_hb->add_spacer();
|
|
|
|
|
|
|
|
site_search = memnew( ToolButton );
|
2016-05-04 03:25:37 +02:00
|
|
|
site_search->set_text(TTR("Tutorials"));
|
2015-11-17 13:46:08 +01:00
|
|
|
site_search->connect("pressed",this,"_menu_option",varray(SEARCH_WEBSITE));
|
|
|
|
menu_hb->add_child(site_search);
|
2016-05-19 00:08:12 +02:00
|
|
|
site_search->set_tooltip(TTR("Open https://godotengine.org at tutorials section."));
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
class_search = memnew( ToolButton );
|
2016-05-04 03:25:37 +02:00
|
|
|
class_search->set_text(TTR("Classes"));
|
2015-11-17 13:46:08 +01:00
|
|
|
class_search->connect("pressed",this,"_menu_option",varray(SEARCH_CLASSES));
|
|
|
|
menu_hb->add_child(class_search);
|
2016-05-04 03:25:37 +02:00
|
|
|
class_search->set_tooltip(TTR("Search the class hierarchy."));
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
help_search = memnew( ToolButton );
|
2016-05-04 03:25:37 +02:00
|
|
|
help_search->set_text(TTR("Search Help"));
|
2015-11-17 13:46:08 +01:00
|
|
|
help_search->connect("pressed",this,"_menu_option",varray(SEARCH_HELP));
|
|
|
|
menu_hb->add_child(help_search);
|
2016-05-04 03:25:37 +02:00
|
|
|
help_search->set_tooltip(TTR("Search the reference documentation."));
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
menu_hb->add_child( memnew( VSeparator) );
|
|
|
|
|
|
|
|
script_back = memnew( ToolButton );
|
|
|
|
script_back->connect("pressed",this,"_history_back");
|
|
|
|
menu_hb->add_child(script_back);
|
|
|
|
script_back->set_disabled(true);
|
2016-05-04 03:25:37 +02:00
|
|
|
script_back->set_tooltip(TTR("Go to previous edited document."));
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
script_forward = memnew( ToolButton );
|
|
|
|
script_forward->connect("pressed",this,"_history_forward");
|
|
|
|
menu_hb->add_child(script_forward);
|
|
|
|
script_forward->set_disabled(true);
|
2016-05-04 03:25:37 +02:00
|
|
|
script_forward->set_tooltip(TTR("Go to next edited document."));
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
tab_container->connect("tab_changed", this,"_tab_changed");
|
|
|
|
|
|
|
|
erase_tab_confirm = memnew( ConfirmationDialog );
|
|
|
|
add_child(erase_tab_confirm);
|
|
|
|
erase_tab_confirm->connect("confirmed", this,"_close_current_tab");
|
|
|
|
|
2015-08-10 01:39:59 +02:00
|
|
|
script_create_dialog = memnew(ScriptCreateDialog);
|
2016-05-04 03:25:37 +02:00
|
|
|
script_create_dialog->set_title(TTR("Create Script"));
|
2015-08-10 01:39:59 +02:00
|
|
|
add_child(script_create_dialog);
|
|
|
|
script_create_dialog->connect("script_created", this, "_script_created");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-04-12 16:45:31 +02:00
|
|
|
file_dialog_option = -1;
|
|
|
|
file_dialog = memnew( EditorFileDialog );
|
|
|
|
add_child(file_dialog);
|
|
|
|
file_dialog->connect("file_selected", this,"_file_dialog_action");
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
debugger = memnew( ScriptEditorDebugger(editor) );
|
|
|
|
debugger->connect("goto_script_line",this,"_goto_script_line");
|
|
|
|
debugger->connect("show_debugger",this,"_show_debugger");
|
|
|
|
|
|
|
|
disk_changed = memnew( ConfirmationDialog );
|
|
|
|
{
|
|
|
|
VBoxContainer *vbc = memnew( VBoxContainer );
|
|
|
|
disk_changed->add_child(vbc);
|
2017-01-10 05:49:55 +01:00
|
|
|
// disk_changed->set_child_rect(vbc);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Label *dl = memnew( Label );
|
2016-05-21 01:18:35 +02:00
|
|
|
dl->set_text(TTR("The following files are newer on disk.\nWhat action should be taken?:"));
|
2014-02-10 02:10:30 +01:00
|
|
|
vbc->add_child(dl);
|
|
|
|
|
|
|
|
disk_changed_list = memnew( Tree );
|
|
|
|
vbc->add_child(disk_changed_list);
|
|
|
|
disk_changed_list->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
|
|
|
|
disk_changed->connect("confirmed",this,"_reload_scripts");
|
2016-05-04 03:25:37 +02:00
|
|
|
disk_changed->get_ok()->set_text(TTR("Reload"));
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-04 03:25:37 +02:00
|
|
|
disk_changed->add_button(TTR("Resave"),!OS::get_singleton()->get_swap_ok_cancel(),"resave");
|
2014-02-10 02:10:30 +01:00
|
|
|
disk_changed->connect("custom_action",this,"_resave_scripts");
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
add_child(disk_changed);
|
|
|
|
|
|
|
|
script_editor=this;
|
|
|
|
|
2016-01-18 00:03:57 +01:00
|
|
|
|
2016-05-04 03:25:37 +02:00
|
|
|
Button *db = EditorNode::get_singleton()->add_bottom_panel_item(TTR("Debugger"),debugger);
|
2016-01-18 00:03:57 +01:00
|
|
|
debugger->set_tool_button(db);
|
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
debugger->connect("breaked",this,"_breaked");
|
2015-05-05 04:32:40 +02:00
|
|
|
|
|
|
|
autosave_timer = memnew( Timer );
|
|
|
|
autosave_timer->set_one_shot(false);
|
|
|
|
add_child(autosave_timer);
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
grab_focus_block=false;
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
help_search_dialog = memnew( EditorHelpSearch );
|
|
|
|
add_child(help_search_dialog);
|
|
|
|
help_search_dialog->connect("go_to_help",this,"_help_class_goto");
|
|
|
|
|
|
|
|
|
|
|
|
help_index = memnew( EditorHelpIndex );
|
|
|
|
add_child(help_index);
|
|
|
|
help_index->connect("open_class",this,"_help_class_open");
|
|
|
|
|
|
|
|
history_pos=-1;
|
2014-02-10 02:10:30 +01:00
|
|
|
// debugger_gui->hide();
|
2014-05-06 11:43:14 +02:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
edit_pass=0;
|
2016-04-23 20:21:34 +02:00
|
|
|
trim_trailing_whitespace_on_save = false;
|
2016-08-25 22:45:20 +02:00
|
|
|
|
|
|
|
ScriptServer::edit_request_func=_open_script_request;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-26 06:14:31 +02:00
|
|
|
ScriptEditor::~ScriptEditor() {
|
|
|
|
|
|
|
|
memdelete(completion_cache);
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void ScriptEditorPlugin::edit(Object *p_object) {
|
|
|
|
|
|
|
|
if (!p_object->cast_to<Script>())
|
|
|
|
return;
|
|
|
|
|
|
|
|
script_editor->edit(p_object->cast_to<Script>());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ScriptEditorPlugin::handles(Object *p_object) const {
|
|
|
|
|
2016-07-07 01:35:49 +02:00
|
|
|
if (p_object->cast_to<Script>()) {
|
|
|
|
|
|
|
|
bool valid = _can_open_in_editor(p_object->cast_to<Script>());
|
|
|
|
|
|
|
|
if (!valid) { //user tried to open it by clicking
|
|
|
|
EditorNode::get_singleton()->show_warning(TTR("Built-in scripts can only be edited when the scene they belong to is loaded"));
|
|
|
|
}
|
|
|
|
return valid;
|
|
|
|
}
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
return p_object->is_class("Script");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditorPlugin::make_visible(bool p_visible) {
|
|
|
|
|
|
|
|
if (p_visible) {
|
|
|
|
script_editor->show();
|
|
|
|
script_editor->set_process(true);
|
|
|
|
script_editor->ensure_select_current();
|
|
|
|
} else {
|
|
|
|
|
|
|
|
script_editor->hide();
|
|
|
|
script_editor->set_process(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditorPlugin::selected_notify() {
|
|
|
|
|
|
|
|
script_editor->ensure_select_current();
|
|
|
|
}
|
|
|
|
|
|
|
|
Dictionary ScriptEditorPlugin::get_state() const {
|
|
|
|
|
|
|
|
return script_editor->get_state();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditorPlugin::set_state(const Dictionary& p_state) {
|
|
|
|
|
|
|
|
script_editor->set_state(p_state);
|
|
|
|
}
|
|
|
|
void ScriptEditorPlugin::clear() {
|
|
|
|
|
|
|
|
script_editor->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditorPlugin::save_external_data() {
|
|
|
|
|
2016-02-03 01:10:52 +01:00
|
|
|
script_editor->save_all_scripts();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditorPlugin::apply_changes() {
|
|
|
|
|
|
|
|
script_editor->apply_scripts();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditorPlugin::restore_global_state() {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptEditorPlugin::save_global_state() {
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
void ScriptEditorPlugin::set_window_layout(Ref<ConfigFile> p_layout) {
|
|
|
|
|
|
|
|
script_editor->set_window_layout(p_layout);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
void ScriptEditorPlugin::get_window_layout(Ref<ConfigFile> p_layout){
|
|
|
|
|
|
|
|
script_editor->get_window_layout(p_layout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void ScriptEditorPlugin::get_breakpoints(List<String> *p_breakpoints) {
|
|
|
|
|
|
|
|
|
|
|
|
return script_editor->get_breakpoints(p_breakpoints);
|
|
|
|
}
|
|
|
|
|
2015-12-09 13:08:41 +01:00
|
|
|
void ScriptEditorPlugin::edited_scene_changed() {
|
|
|
|
|
|
|
|
script_editor->edited_scene_changed();
|
|
|
|
}
|
|
|
|
|
2016-06-03 17:34:11 +02:00
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
ScriptEditorPlugin::ScriptEditorPlugin(EditorNode *p_node) {
|
|
|
|
|
|
|
|
editor=p_node;
|
|
|
|
script_editor = memnew( ScriptEditor(p_node) );
|
|
|
|
editor->get_viewport()->add_child(script_editor);
|
2016-02-08 17:01:54 +01:00
|
|
|
script_editor->set_v_size_flags(Control::SIZE_EXPAND_FILL);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
script_editor->hide();
|
|
|
|
|
2017-01-05 23:41:36 +01:00
|
|
|
EDITOR_DEF("text_editor/files/auto_reload_scripts_on_external_change",true);
|
|
|
|
ScriptServer::set_reload_scripts_on_save(EDITOR_DEF("text_editor/files/auto_reload_and_parse_scripts_on_save",true));
|
|
|
|
EDITOR_DEF("text_editor/files/open_dominant_script_on_scene_change",true);
|
|
|
|
EDITOR_DEF("text_editor/external/use_external_editor",false);
|
|
|
|
EDITOR_DEF("text_editor/external/exec_path","");
|
|
|
|
EDITOR_DEF("text_editor/open_scripts/script_temperature_enabled",true);
|
|
|
|
EDITOR_DEF("text_editor/open_scripts/highlight_current_script", true);
|
|
|
|
EDITOR_DEF("text_editor/open_scripts/script_temperature_history_size",15);
|
|
|
|
EDITOR_DEF("text_editor/open_scripts/script_temperature_hot_color",Color(1,0,0,0.3));
|
|
|
|
EDITOR_DEF("text_editor/open_scripts/script_temperature_cold_color",Color(0,0,1,0.3));
|
|
|
|
EDITOR_DEF("text_editor/open_scripts/current_script_background_color",Color(0.81,0.81,0.14,0.63));
|
|
|
|
EDITOR_DEF("text_editor/open_scripts/group_help_pages",true);
|
|
|
|
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING,"text_editor/external/exec_path",PROPERTY_HINT_GLOBAL_FILE));
|
|
|
|
EDITOR_DEF("text_editor/external/exec_flags","");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-06-13 15:58:32 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ScriptEditorPlugin::~ScriptEditorPlugin()
|
|
|
|
{
|
|
|
|
}
|