editor_log.cpp 21 KB

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