editor_log.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. /**************************************************************************/
  2. /* editor_log.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "editor_log.h"
  31. #include "core/object/undo_redo.h"
  32. #include "core/os/keyboard.h"
  33. #include "core/version.h"
  34. #include "editor/editor_node.h"
  35. #include "editor/editor_paths.h"
  36. #include "editor/editor_settings.h"
  37. #include "editor/editor_string_names.h"
  38. #include "editor/themes/editor_scale.h"
  39. #include "scene/gui/center_container.h"
  40. #include "scene/gui/separator.h"
  41. #include "scene/resources/font.h"
  42. void EditorLog::_error_handler(void *p_self, const char *p_func, const char *p_file, int p_line, const char *p_error, const char *p_errorexp, bool p_editor_notify, ErrorHandlerType p_type) {
  43. EditorLog *self = static_cast<EditorLog *>(p_self);
  44. String err_str;
  45. if (p_errorexp && p_errorexp[0]) {
  46. err_str = String::utf8(p_errorexp);
  47. } else {
  48. err_str = String::utf8(p_file) + ":" + itos(p_line) + " - " + String::utf8(p_error);
  49. }
  50. if (p_editor_notify) {
  51. err_str += " (User)";
  52. }
  53. MessageType message_type = p_type == ERR_HANDLER_WARNING ? MSG_TYPE_WARNING : MSG_TYPE_ERROR;
  54. if (self->current != Thread::get_caller_id()) {
  55. callable_mp(self, &EditorLog::add_message).bind(err_str, message_type).call_deferred();
  56. } else {
  57. self->add_message(err_str, message_type);
  58. }
  59. }
  60. void EditorLog::_update_theme() {
  61. const Ref<Font> normal_font = get_theme_font(SNAME("output_source"), EditorStringName(EditorFonts));
  62. if (normal_font.is_valid()) {
  63. log->add_theme_font_override("normal_font", normal_font);
  64. }
  65. const Ref<Font> bold_font = get_theme_font(SNAME("output_source_bold"), EditorStringName(EditorFonts));
  66. if (bold_font.is_valid()) {
  67. log->add_theme_font_override("bold_font", bold_font);
  68. }
  69. const Ref<Font> italics_font = get_theme_font(SNAME("output_source_italic"), EditorStringName(EditorFonts));
  70. if (italics_font.is_valid()) {
  71. log->add_theme_font_override("italics_font", italics_font);
  72. }
  73. const Ref<Font> bold_italics_font = get_theme_font(SNAME("output_source_bold_italic"), EditorStringName(EditorFonts));
  74. if (bold_italics_font.is_valid()) {
  75. log->add_theme_font_override("bold_italics_font", bold_italics_font);
  76. }
  77. const Ref<Font> mono_font = get_theme_font(SNAME("output_source_mono"), EditorStringName(EditorFonts));
  78. if (mono_font.is_valid()) {
  79. log->add_theme_font_override("mono_font", mono_font);
  80. }
  81. // Disable padding for highlighted background/foreground to prevent highlights from overlapping on close lines.
  82. // This also better matches terminal output, which does not use any form of padding.
  83. log->add_theme_constant_override("text_highlight_h_padding", 0);
  84. log->add_theme_constant_override("text_highlight_v_padding", 0);
  85. const int font_size = get_theme_font_size(SNAME("output_source_size"), EditorStringName(EditorFonts));
  86. log->begin_bulk_theme_override();
  87. log->add_theme_font_size_override("normal_font_size", font_size);
  88. log->add_theme_font_size_override("bold_font_size", font_size);
  89. log->add_theme_font_size_override("italics_font_size", font_size);
  90. log->add_theme_font_size_override("mono_font_size", font_size);
  91. log->end_bulk_theme_override();
  92. type_filter_map[MSG_TYPE_STD]->toggle_button->set_icon(get_editor_theme_icon(SNAME("Popup")));
  93. type_filter_map[MSG_TYPE_ERROR]->toggle_button->set_icon(get_editor_theme_icon(SNAME("StatusError")));
  94. type_filter_map[MSG_TYPE_WARNING]->toggle_button->set_icon(get_editor_theme_icon(SNAME("StatusWarning")));
  95. type_filter_map[MSG_TYPE_EDITOR]->toggle_button->set_icon(get_editor_theme_icon(SNAME("Edit")));
  96. type_filter_map[MSG_TYPE_STD]->toggle_button->set_theme_type_variation("EditorLogFilterButton");
  97. type_filter_map[MSG_TYPE_ERROR]->toggle_button->set_theme_type_variation("EditorLogFilterButton");
  98. type_filter_map[MSG_TYPE_WARNING]->toggle_button->set_theme_type_variation("EditorLogFilterButton");
  99. type_filter_map[MSG_TYPE_EDITOR]->toggle_button->set_theme_type_variation("EditorLogFilterButton");
  100. clear_button->set_icon(get_editor_theme_icon(SNAME("Clear")));
  101. copy_button->set_icon(get_editor_theme_icon(SNAME("ActionCopy")));
  102. collapse_button->set_icon(get_editor_theme_icon(SNAME("CombineLines")));
  103. show_search_button->set_icon(get_editor_theme_icon(SNAME("Search")));
  104. search_box->set_right_icon(get_editor_theme_icon(SNAME("Search")));
  105. theme_cache.error_color = get_theme_color(SNAME("error_color"), EditorStringName(Editor));
  106. theme_cache.error_icon = get_editor_theme_icon(SNAME("Error"));
  107. theme_cache.warning_color = get_theme_color(SNAME("warning_color"), EditorStringName(Editor));
  108. theme_cache.warning_icon = get_editor_theme_icon(SNAME("Warning"));
  109. theme_cache.message_color = get_theme_color(SNAME("font_color"), EditorStringName(Editor)) * Color(1, 1, 1, 0.6);
  110. }
  111. void EditorLog::_editor_settings_changed() {
  112. int new_line_limit = int(EDITOR_GET("run/output/max_lines"));
  113. if (new_line_limit != line_limit) {
  114. line_limit = new_line_limit;
  115. _rebuild_log();
  116. }
  117. }
  118. void EditorLog::_notification(int p_what) {
  119. switch (p_what) {
  120. case NOTIFICATION_ENTER_TREE: {
  121. _update_theme();
  122. _load_state();
  123. } break;
  124. case NOTIFICATION_THEME_CHANGED: {
  125. _update_theme();
  126. _rebuild_log();
  127. } break;
  128. }
  129. }
  130. void EditorLog::_set_collapse(bool p_collapse) {
  131. collapse = p_collapse;
  132. _start_state_save_timer();
  133. _rebuild_log();
  134. }
  135. void EditorLog::_start_state_save_timer() {
  136. if (!is_loading_state) {
  137. save_state_timer->start();
  138. }
  139. }
  140. void EditorLog::_save_state() {
  141. Ref<ConfigFile> config;
  142. config.instantiate();
  143. // Load and amend existing config if it exists.
  144. config->load(EditorPaths::get_singleton()->get_project_settings_dir().path_join("editor_layout.cfg"));
  145. const String section = "editor_log";
  146. for (const KeyValue<MessageType, LogFilter *> &E : type_filter_map) {
  147. config->set_value(section, "log_filter_" + itos(E.key), E.value->is_active());
  148. }
  149. config->set_value(section, "collapse", collapse);
  150. config->set_value(section, "show_search", search_box->is_visible());
  151. config->save(EditorPaths::get_singleton()->get_project_settings_dir().path_join("editor_layout.cfg"));
  152. }
  153. void EditorLog::_load_state() {
  154. is_loading_state = true;
  155. Ref<ConfigFile> config;
  156. config.instantiate();
  157. config->load(EditorPaths::get_singleton()->get_project_settings_dir().path_join("editor_layout.cfg"));
  158. // Run the below code even if config->load returns an error, since we want the defaults to be set even if the file does not exist yet.
  159. const String section = "editor_log";
  160. for (const KeyValue<MessageType, LogFilter *> &E : type_filter_map) {
  161. E.value->set_active(config->get_value(section, "log_filter_" + itos(E.key), true));
  162. }
  163. collapse = config->get_value(section, "collapse", false);
  164. collapse_button->set_pressed(collapse);
  165. bool show_search = config->get_value(section, "show_search", true);
  166. search_box->set_visible(show_search);
  167. show_search_button->set_pressed(show_search);
  168. is_loading_state = false;
  169. }
  170. void EditorLog::_meta_clicked(const String &p_meta) {
  171. OS::get_singleton()->shell_open(p_meta);
  172. }
  173. void EditorLog::_clear_request() {
  174. log->clear();
  175. messages.clear();
  176. _reset_message_counts();
  177. tool_button->set_icon(Ref<Texture2D>());
  178. }
  179. void EditorLog::_copy_request() {
  180. String text = log->get_selected_text();
  181. if (text.is_empty()) {
  182. text = log->get_parsed_text();
  183. }
  184. if (!text.is_empty()) {
  185. DisplayServer::get_singleton()->clipboard_set(text);
  186. }
  187. }
  188. void EditorLog::clear() {
  189. _clear_request();
  190. }
  191. void EditorLog::_process_message(const String &p_msg, MessageType p_type, bool p_clear) {
  192. if (messages.size() > 0 && messages[messages.size() - 1].text == p_msg && messages[messages.size() - 1].type == p_type) {
  193. // If previous message is the same as the new one, increase previous count rather than adding another
  194. // instance to the messages list.
  195. LogMessage &previous = messages.write[messages.size() - 1];
  196. previous.count++;
  197. _add_log_line(previous, collapse);
  198. } else {
  199. // Different message to the previous one received.
  200. LogMessage message(p_msg, p_type, p_clear);
  201. _add_log_line(message);
  202. messages.push_back(message);
  203. }
  204. type_filter_map[p_type]->set_message_count(type_filter_map[p_type]->get_message_count() + 1);
  205. }
  206. void EditorLog::add_message(const String &p_msg, MessageType p_type) {
  207. // Make text split by new lines their own message.
  208. // See #41321 for reasoning. At time of writing, multiple print()'s in running projects
  209. // get grouped together and sent to the editor log as one message. This can mess with the
  210. // search functionality (see the comments on the PR above for more details). This behavior
  211. // also matches that of other IDE's.
  212. Vector<String> lines = p_msg.split("\n", true);
  213. int line_count = lines.size();
  214. for (int i = 0; i < line_count; i++) {
  215. _process_message(lines[i], p_type, i == line_count - 1);
  216. }
  217. }
  218. void EditorLog::set_tool_button(Button *p_tool_button) {
  219. tool_button = p_tool_button;
  220. }
  221. void EditorLog::register_undo_redo(UndoRedo *p_undo_redo) {
  222. p_undo_redo->set_commit_notify_callback(_undo_redo_cbk, this);
  223. }
  224. void EditorLog::_undo_redo_cbk(void *p_self, const String &p_name) {
  225. EditorLog *self = static_cast<EditorLog *>(p_self);
  226. self->add_message(p_name, EditorLog::MSG_TYPE_EDITOR);
  227. }
  228. void EditorLog::_rebuild_log() {
  229. log->clear();
  230. int line_count = 0;
  231. int start_message_index = 0;
  232. int initial_skip = 0;
  233. // Search backward for starting place.
  234. for (start_message_index = messages.size() - 1; start_message_index >= 0; start_message_index--) {
  235. LogMessage msg = messages[start_message_index];
  236. if (collapse) {
  237. if (_check_display_message(msg)) {
  238. line_count++;
  239. }
  240. } else {
  241. // If not collapsing, log each instance on a line.
  242. for (int i = 0; i < msg.count; i++) {
  243. if (_check_display_message(msg)) {
  244. line_count++;
  245. }
  246. }
  247. }
  248. if (line_count >= line_limit) {
  249. initial_skip = line_count - line_limit;
  250. break;
  251. }
  252. if (start_message_index == 0) {
  253. break;
  254. }
  255. }
  256. for (int msg_idx = start_message_index; msg_idx < messages.size(); msg_idx++) {
  257. LogMessage msg = messages[msg_idx];
  258. if (collapse) {
  259. // If collapsing, only log one instance of the message.
  260. _add_log_line(msg);
  261. } else {
  262. // If not collapsing, log each instance on a line.
  263. for (int i = initial_skip; i < msg.count; i++) {
  264. initial_skip = 0;
  265. _add_log_line(msg);
  266. }
  267. }
  268. }
  269. }
  270. bool EditorLog::_check_display_message(LogMessage &p_message) {
  271. bool filter_active = type_filter_map[p_message.type]->is_active();
  272. String search_text = search_box->get_text();
  273. bool search_match = search_text.is_empty() || p_message.text.containsn(search_text);
  274. return filter_active && search_match;
  275. }
  276. void EditorLog::_add_log_line(LogMessage &p_message, bool p_replace_previous) {
  277. if (!is_inside_tree()) {
  278. // The log will be built all at once when it enters the tree and has its theme items.
  279. return;
  280. }
  281. if (unlikely(log->is_updating())) {
  282. // The new message arrived during log RTL text processing/redraw (invalid BiDi control characters / font error), ignore it to avoid RTL data corruption.
  283. return;
  284. }
  285. // Only add the message to the log if it passes the filters.
  286. if (!_check_display_message(p_message)) {
  287. return;
  288. }
  289. if (p_replace_previous) {
  290. // Remove last line if replacing, as it will be replace by the next added line.
  291. // Why "- 2"? RichTextLabel is weird. When you add a line with add_newline(), it also adds an element to the list of lines which is null/blank,
  292. // but it still counts as a line. So if you remove the last line (count - 1) you are actually removing nothing...
  293. log->remove_paragraph(log->get_paragraph_count() - 2);
  294. }
  295. switch (p_message.type) {
  296. case MSG_TYPE_STD: {
  297. } break;
  298. case MSG_TYPE_STD_RICH: {
  299. } break;
  300. case MSG_TYPE_ERROR: {
  301. log->push_color(theme_cache.error_color);
  302. Ref<Texture2D> icon = theme_cache.error_icon;
  303. log->add_image(icon);
  304. log->add_text(" ");
  305. tool_button->set_icon(icon);
  306. } break;
  307. case MSG_TYPE_WARNING: {
  308. log->push_color(theme_cache.warning_color);
  309. Ref<Texture2D> icon = theme_cache.warning_icon;
  310. log->add_image(icon);
  311. log->add_text(" ");
  312. tool_button->set_icon(icon);
  313. } break;
  314. case MSG_TYPE_EDITOR: {
  315. // Distinguish editor messages from messages printed by the project
  316. log->push_color(theme_cache.message_color);
  317. } break;
  318. }
  319. // If collapsing, add the count of this message in bold at the start of the line.
  320. if (collapse && p_message.count > 1) {
  321. log->push_bold();
  322. log->add_text(vformat("(%s) ", itos(p_message.count)));
  323. log->pop();
  324. }
  325. if (p_message.type == MSG_TYPE_STD_RICH) {
  326. log->append_text(p_message.text);
  327. } else {
  328. log->add_text(p_message.text);
  329. }
  330. if (p_message.clear || p_message.type != MSG_TYPE_STD_RICH) {
  331. log->pop_all(); // Pop all unclosed tags.
  332. }
  333. log->add_newline();
  334. if (p_replace_previous) {
  335. // Force sync last line update (skip if number of unprocessed log messages is too large to avoid editor lag).
  336. if (log->get_pending_paragraphs() < 100) {
  337. while (!log->is_ready()) {
  338. ::OS::get_singleton()->delay_usec(1);
  339. }
  340. }
  341. }
  342. while (log->get_paragraph_count() > line_limit + 1) {
  343. log->remove_paragraph(0, true);
  344. }
  345. }
  346. void EditorLog::_set_filter_active(bool p_active, MessageType p_message_type) {
  347. type_filter_map[p_message_type]->set_active(p_active);
  348. _start_state_save_timer();
  349. _rebuild_log();
  350. }
  351. void EditorLog::_set_search_visible(bool p_visible) {
  352. search_box->set_visible(p_visible);
  353. if (p_visible) {
  354. search_box->grab_focus();
  355. }
  356. _start_state_save_timer();
  357. }
  358. void EditorLog::_search_changed(const String &p_text) {
  359. _rebuild_log();
  360. }
  361. void EditorLog::_reset_message_counts() {
  362. for (const KeyValue<MessageType, LogFilter *> &E : type_filter_map) {
  363. E.value->set_message_count(0);
  364. }
  365. }
  366. EditorLog::EditorLog() {
  367. save_state_timer = memnew(Timer);
  368. save_state_timer->set_wait_time(2);
  369. save_state_timer->set_one_shot(true);
  370. save_state_timer->connect("timeout", callable_mp(this, &EditorLog::_save_state));
  371. add_child(save_state_timer);
  372. line_limit = int(EDITOR_GET("run/output/max_lines"));
  373. EditorSettings::get_singleton()->connect("settings_changed", callable_mp(this, &EditorLog::_editor_settings_changed));
  374. HBoxContainer *hb = this;
  375. VBoxContainer *vb_left = memnew(VBoxContainer);
  376. vb_left->set_custom_minimum_size(Size2(0, 180) * EDSCALE);
  377. vb_left->set_v_size_flags(SIZE_EXPAND_FILL);
  378. vb_left->set_h_size_flags(SIZE_EXPAND_FILL);
  379. hb->add_child(vb_left);
  380. // Log - Rich Text Label.
  381. log = memnew(RichTextLabel);
  382. log->set_threaded(true);
  383. log->set_use_bbcode(true);
  384. log->set_scroll_follow(true);
  385. log->set_selection_enabled(true);
  386. log->set_context_menu_enabled(true);
  387. log->set_focus_mode(FOCUS_CLICK);
  388. log->set_v_size_flags(SIZE_EXPAND_FILL);
  389. log->set_h_size_flags(SIZE_EXPAND_FILL);
  390. log->set_deselect_on_focus_loss_enabled(false);
  391. log->connect("meta_clicked", callable_mp(this, &EditorLog::_meta_clicked));
  392. vb_left->add_child(log);
  393. // Search box
  394. search_box = memnew(LineEdit);
  395. search_box->set_h_size_flags(Control::SIZE_EXPAND_FILL);
  396. search_box->set_placeholder(TTR("Filter Messages"));
  397. search_box->set_clear_button_enabled(true);
  398. search_box->set_visible(true);
  399. search_box->connect("text_changed", callable_mp(this, &EditorLog::_search_changed));
  400. vb_left->add_child(search_box);
  401. VBoxContainer *vb_right = memnew(VBoxContainer);
  402. hb->add_child(vb_right);
  403. // Tools grid
  404. HBoxContainer *hb_tools = memnew(HBoxContainer);
  405. hb_tools->set_h_size_flags(SIZE_SHRINK_CENTER);
  406. vb_right->add_child(hb_tools);
  407. // Clear.
  408. clear_button = memnew(Button);
  409. clear_button->set_theme_type_variation("FlatButton");
  410. clear_button->set_focus_mode(FOCUS_NONE);
  411. clear_button->set_shortcut(ED_SHORTCUT("editor/clear_output", TTR("Clear Output"), KeyModifierMask::CMD_OR_CTRL | KeyModifierMask::ALT | Key::K));
  412. clear_button->connect(SceneStringName(pressed), callable_mp(this, &EditorLog::_clear_request));
  413. hb_tools->add_child(clear_button);
  414. // Copy.
  415. copy_button = memnew(Button);
  416. copy_button->set_theme_type_variation("FlatButton");
  417. copy_button->set_focus_mode(FOCUS_NONE);
  418. copy_button->set_shortcut(ED_SHORTCUT("editor/copy_output", TTR("Copy Selection"), KeyModifierMask::CMD_OR_CTRL | Key::C));
  419. copy_button->set_shortcut_context(this);
  420. copy_button->connect(SceneStringName(pressed), callable_mp(this, &EditorLog::_copy_request));
  421. hb_tools->add_child(copy_button);
  422. // Separate toggle buttons from normal buttons.
  423. vb_right->add_child(memnew(HSeparator));
  424. // A second hbox to make a 2x2 grid of buttons.
  425. HBoxContainer *hb_tools2 = memnew(HBoxContainer);
  426. hb_tools2->set_h_size_flags(SIZE_SHRINK_CENTER);
  427. vb_right->add_child(hb_tools2);
  428. // Collapse.
  429. collapse_button = memnew(Button);
  430. collapse_button->set_theme_type_variation("FlatButton");
  431. collapse_button->set_focus_mode(FOCUS_NONE);
  432. collapse_button->set_tooltip_text(TTR("Collapse duplicate messages into one log entry. Shows number of occurrences."));
  433. collapse_button->set_toggle_mode(true);
  434. collapse_button->set_pressed(false);
  435. collapse_button->connect("toggled", callable_mp(this, &EditorLog::_set_collapse));
  436. hb_tools2->add_child(collapse_button);
  437. // Show Search.
  438. show_search_button = memnew(Button);
  439. show_search_button->set_theme_type_variation("FlatButton");
  440. show_search_button->set_focus_mode(FOCUS_NONE);
  441. show_search_button->set_toggle_mode(true);
  442. show_search_button->set_pressed(true);
  443. show_search_button->set_shortcut(ED_SHORTCUT("editor/open_search", TTR("Focus Search/Filter Bar"), KeyModifierMask::CMD_OR_CTRL | Key::F));
  444. show_search_button->set_shortcut_context(this);
  445. show_search_button->connect("toggled", callable_mp(this, &EditorLog::_set_search_visible));
  446. hb_tools2->add_child(show_search_button);
  447. // Message Type Filters.
  448. vb_right->add_child(memnew(HSeparator));
  449. LogFilter *std_filter = memnew(LogFilter(MSG_TYPE_STD));
  450. std_filter->initialize_button(TTR("Toggle visibility of standard output messages."), callable_mp(this, &EditorLog::_set_filter_active));
  451. vb_right->add_child(std_filter->toggle_button);
  452. type_filter_map.insert(MSG_TYPE_STD, std_filter);
  453. type_filter_map.insert(MSG_TYPE_STD_RICH, std_filter);
  454. LogFilter *error_filter = memnew(LogFilter(MSG_TYPE_ERROR));
  455. error_filter->initialize_button(TTR("Toggle visibility of errors."), callable_mp(this, &EditorLog::_set_filter_active));
  456. vb_right->add_child(error_filter->toggle_button);
  457. type_filter_map.insert(MSG_TYPE_ERROR, error_filter);
  458. LogFilter *warning_filter = memnew(LogFilter(MSG_TYPE_WARNING));
  459. warning_filter->initialize_button(TTR("Toggle visibility of warnings."), callable_mp(this, &EditorLog::_set_filter_active));
  460. vb_right->add_child(warning_filter->toggle_button);
  461. type_filter_map.insert(MSG_TYPE_WARNING, warning_filter);
  462. LogFilter *editor_filter = memnew(LogFilter(MSG_TYPE_EDITOR));
  463. editor_filter->initialize_button(TTR("Toggle visibility of editor messages."), callable_mp(this, &EditorLog::_set_filter_active));
  464. vb_right->add_child(editor_filter->toggle_button);
  465. type_filter_map.insert(MSG_TYPE_EDITOR, editor_filter);
  466. add_message(VERSION_FULL_NAME " (c) 2007-present Juan Linietsky, Ariel Manzur & Godot Contributors.");
  467. eh.errfunc = _error_handler;
  468. eh.userdata = this;
  469. add_error_handler(&eh);
  470. current = Thread::get_caller_id();
  471. }
  472. void EditorLog::deinit() {
  473. remove_error_handler(&eh);
  474. }
  475. EditorLog::~EditorLog() {
  476. for (const KeyValue<MessageType, LogFilter *> &E : type_filter_map) {
  477. // MSG_TYPE_STD_RICH is connected to the std_filter button, so we do this
  478. // to avoid it from being deleted twice, causing a crash on closing.
  479. if (E.key != MSG_TYPE_STD_RICH) {
  480. memdelete(E.value);
  481. }
  482. }
  483. }