editor_log.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  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 (!Thread::is_main_thread()) {
  55. MessageQueue::get_main_singleton()->push_callable(callable_mp(self, &EditorLog::add_message), err_str, message_type);
  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(SceneStringName(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. if (messages.is_empty()) {
  230. return;
  231. }
  232. log->clear();
  233. int line_count = 0;
  234. int start_message_index = 0;
  235. int initial_skip = 0;
  236. // Search backward for starting place.
  237. for (start_message_index = messages.size() - 1; start_message_index >= 0; start_message_index--) {
  238. LogMessage msg = messages[start_message_index];
  239. if (collapse) {
  240. if (_check_display_message(msg)) {
  241. line_count++;
  242. }
  243. } else {
  244. // If not collapsing, log each instance on a line.
  245. for (int i = 0; i < msg.count; i++) {
  246. if (_check_display_message(msg)) {
  247. line_count++;
  248. }
  249. }
  250. }
  251. if (line_count >= line_limit) {
  252. initial_skip = line_count - line_limit;
  253. break;
  254. }
  255. if (start_message_index == 0) {
  256. break;
  257. }
  258. }
  259. for (int msg_idx = start_message_index; msg_idx < messages.size(); msg_idx++) {
  260. LogMessage msg = messages[msg_idx];
  261. if (collapse) {
  262. // If collapsing, only log one instance of the message.
  263. _add_log_line(msg);
  264. } else {
  265. // If not collapsing, log each instance on a line.
  266. for (int i = initial_skip; i < msg.count; i++) {
  267. initial_skip = 0;
  268. _add_log_line(msg);
  269. }
  270. }
  271. }
  272. }
  273. bool EditorLog::_check_display_message(LogMessage &p_message) {
  274. bool filter_active = type_filter_map[p_message.type]->is_active();
  275. String search_text = search_box->get_text();
  276. bool search_match = search_text.is_empty() || p_message.text.containsn(search_text);
  277. return filter_active && search_match;
  278. }
  279. void EditorLog::_add_log_line(LogMessage &p_message, bool p_replace_previous) {
  280. if (!is_inside_tree()) {
  281. // The log will be built all at once when it enters the tree and has its theme items.
  282. return;
  283. }
  284. if (unlikely(log->is_updating())) {
  285. // The new message arrived during log RTL text processing/redraw (invalid BiDi control characters / font error), ignore it to avoid RTL data corruption.
  286. return;
  287. }
  288. // Only add the message to the log if it passes the filters.
  289. if (!_check_display_message(p_message)) {
  290. return;
  291. }
  292. if (p_replace_previous) {
  293. // Remove last line if replacing, as it will be replace by the next added line.
  294. // 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,
  295. // but it still counts as a line. So if you remove the last line (count - 1) you are actually removing nothing...
  296. log->remove_paragraph(log->get_paragraph_count() - 2);
  297. }
  298. switch (p_message.type) {
  299. case MSG_TYPE_STD: {
  300. } break;
  301. case MSG_TYPE_STD_RICH: {
  302. } break;
  303. case MSG_TYPE_ERROR: {
  304. log->push_color(theme_cache.error_color);
  305. Ref<Texture2D> icon = theme_cache.error_icon;
  306. log->add_image(icon);
  307. log->add_text(" ");
  308. tool_button->set_icon(icon);
  309. } break;
  310. case MSG_TYPE_WARNING: {
  311. log->push_color(theme_cache.warning_color);
  312. Ref<Texture2D> icon = theme_cache.warning_icon;
  313. log->add_image(icon);
  314. log->add_text(" ");
  315. tool_button->set_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. while (!log->is_ready()) {
  341. ::OS::get_singleton()->delay_usec(1);
  342. }
  343. }
  344. }
  345. while (log->get_paragraph_count() > line_limit + 1) {
  346. log->remove_paragraph(0, true);
  347. }
  348. }
  349. void EditorLog::_set_filter_active(bool p_active, MessageType p_message_type) {
  350. type_filter_map[p_message_type]->set_active(p_active);
  351. _start_state_save_timer();
  352. _rebuild_log();
  353. }
  354. void EditorLog::_set_search_visible(bool p_visible) {
  355. search_box->set_visible(p_visible);
  356. if (p_visible) {
  357. search_box->grab_focus();
  358. }
  359. _start_state_save_timer();
  360. }
  361. void EditorLog::_search_changed(const String &p_text) {
  362. _rebuild_log();
  363. }
  364. void EditorLog::_reset_message_counts() {
  365. for (const KeyValue<MessageType, LogFilter *> &E : type_filter_map) {
  366. E.value->set_message_count(0);
  367. }
  368. }
  369. EditorLog::EditorLog() {
  370. save_state_timer = memnew(Timer);
  371. save_state_timer->set_wait_time(2);
  372. save_state_timer->set_one_shot(true);
  373. save_state_timer->connect("timeout", callable_mp(this, &EditorLog::_save_state));
  374. add_child(save_state_timer);
  375. line_limit = int(EDITOR_GET("run/output/max_lines"));
  376. EditorSettings::get_singleton()->connect("settings_changed", callable_mp(this, &EditorLog::_editor_settings_changed));
  377. HBoxContainer *hb = this;
  378. VBoxContainer *vb_left = memnew(VBoxContainer);
  379. vb_left->set_custom_minimum_size(Size2(0, 180) * EDSCALE);
  380. vb_left->set_v_size_flags(SIZE_EXPAND_FILL);
  381. vb_left->set_h_size_flags(SIZE_EXPAND_FILL);
  382. hb->add_child(vb_left);
  383. // Log - Rich Text Label.
  384. log = memnew(RichTextLabel);
  385. log->set_threaded(true);
  386. log->set_use_bbcode(true);
  387. log->set_scroll_follow(true);
  388. log->set_selection_enabled(true);
  389. log->set_context_menu_enabled(true);
  390. log->set_focus_mode(FOCUS_CLICK);
  391. log->set_v_size_flags(SIZE_EXPAND_FILL);
  392. log->set_h_size_flags(SIZE_EXPAND_FILL);
  393. log->set_deselect_on_focus_loss_enabled(false);
  394. log->connect("meta_clicked", callable_mp(this, &EditorLog::_meta_clicked));
  395. vb_left->add_child(log);
  396. // Search box
  397. search_box = memnew(LineEdit);
  398. search_box->set_h_size_flags(Control::SIZE_EXPAND_FILL);
  399. search_box->set_placeholder(TTR("Filter Messages"));
  400. search_box->set_clear_button_enabled(true);
  401. search_box->set_visible(true);
  402. search_box->connect(SceneStringName(text_changed), callable_mp(this, &EditorLog::_search_changed));
  403. vb_left->add_child(search_box);
  404. VBoxContainer *vb_right = memnew(VBoxContainer);
  405. hb->add_child(vb_right);
  406. // Tools grid
  407. HBoxContainer *hb_tools = memnew(HBoxContainer);
  408. hb_tools->set_h_size_flags(SIZE_SHRINK_CENTER);
  409. vb_right->add_child(hb_tools);
  410. // Clear.
  411. clear_button = memnew(Button);
  412. clear_button->set_theme_type_variation("FlatButton");
  413. clear_button->set_focus_mode(FOCUS_NONE);
  414. clear_button->set_shortcut(ED_SHORTCUT("editor/clear_output", TTR("Clear Output"), KeyModifierMask::CMD_OR_CTRL | KeyModifierMask::ALT | Key::K));
  415. clear_button->connect(SceneStringName(pressed), callable_mp(this, &EditorLog::_clear_request));
  416. hb_tools->add_child(clear_button);
  417. // Copy.
  418. copy_button = memnew(Button);
  419. copy_button->set_theme_type_variation("FlatButton");
  420. copy_button->set_focus_mode(FOCUS_NONE);
  421. copy_button->set_shortcut(ED_SHORTCUT("editor/copy_output", TTR("Copy Selection"), KeyModifierMask::CMD_OR_CTRL | Key::C));
  422. copy_button->set_shortcut_context(this);
  423. copy_button->connect(SceneStringName(pressed), callable_mp(this, &EditorLog::_copy_request));
  424. hb_tools->add_child(copy_button);
  425. // Separate toggle buttons from normal buttons.
  426. vb_right->add_child(memnew(HSeparator));
  427. // A second hbox to make a 2x2 grid of buttons.
  428. HBoxContainer *hb_tools2 = memnew(HBoxContainer);
  429. hb_tools2->set_h_size_flags(SIZE_SHRINK_CENTER);
  430. vb_right->add_child(hb_tools2);
  431. // Collapse.
  432. collapse_button = memnew(Button);
  433. collapse_button->set_theme_type_variation("FlatButton");
  434. collapse_button->set_focus_mode(FOCUS_NONE);
  435. collapse_button->set_tooltip_text(TTR("Collapse duplicate messages into one log entry. Shows number of occurrences."));
  436. collapse_button->set_toggle_mode(true);
  437. collapse_button->set_pressed(false);
  438. collapse_button->connect("toggled", callable_mp(this, &EditorLog::_set_collapse));
  439. hb_tools2->add_child(collapse_button);
  440. // Show Search.
  441. show_search_button = memnew(Button);
  442. show_search_button->set_theme_type_variation("FlatButton");
  443. show_search_button->set_focus_mode(FOCUS_NONE);
  444. show_search_button->set_toggle_mode(true);
  445. show_search_button->set_pressed(true);
  446. show_search_button->set_shortcut(ED_SHORTCUT("editor/open_search", TTR("Focus Search/Filter Bar"), KeyModifierMask::CMD_OR_CTRL | Key::F));
  447. show_search_button->set_shortcut_context(this);
  448. show_search_button->connect("toggled", callable_mp(this, &EditorLog::_set_search_visible));
  449. hb_tools2->add_child(show_search_button);
  450. // Message Type Filters.
  451. vb_right->add_child(memnew(HSeparator));
  452. LogFilter *std_filter = memnew(LogFilter(MSG_TYPE_STD));
  453. std_filter->initialize_button(TTR("Toggle visibility of standard output messages."), callable_mp(this, &EditorLog::_set_filter_active));
  454. vb_right->add_child(std_filter->toggle_button);
  455. type_filter_map.insert(MSG_TYPE_STD, std_filter);
  456. type_filter_map.insert(MSG_TYPE_STD_RICH, std_filter);
  457. LogFilter *error_filter = memnew(LogFilter(MSG_TYPE_ERROR));
  458. error_filter->initialize_button(TTR("Toggle visibility of errors."), callable_mp(this, &EditorLog::_set_filter_active));
  459. vb_right->add_child(error_filter->toggle_button);
  460. type_filter_map.insert(MSG_TYPE_ERROR, error_filter);
  461. LogFilter *warning_filter = memnew(LogFilter(MSG_TYPE_WARNING));
  462. warning_filter->initialize_button(TTR("Toggle visibility of warnings."), callable_mp(this, &EditorLog::_set_filter_active));
  463. vb_right->add_child(warning_filter->toggle_button);
  464. type_filter_map.insert(MSG_TYPE_WARNING, warning_filter);
  465. LogFilter *editor_filter = memnew(LogFilter(MSG_TYPE_EDITOR));
  466. editor_filter->initialize_button(TTR("Toggle visibility of editor messages."), callable_mp(this, &EditorLog::_set_filter_active));
  467. vb_right->add_child(editor_filter->toggle_button);
  468. type_filter_map.insert(MSG_TYPE_EDITOR, editor_filter);
  469. add_message(VERSION_FULL_NAME " (c) 2007-present Juan Linietsky, Ariel Manzur & Godot Contributors.");
  470. eh.errfunc = _error_handler;
  471. eh.userdata = this;
  472. add_error_handler(&eh);
  473. }
  474. void EditorLog::deinit() {
  475. remove_error_handler(&eh);
  476. }
  477. EditorLog::~EditorLog() {
  478. for (const KeyValue<MessageType, LogFilter *> &E : type_filter_map) {
  479. // MSG_TYPE_STD_RICH is connected to the std_filter button, so we do this
  480. // to avoid it from being deleted twice, causing a crash on closing.
  481. if (E.key != MSG_TYPE_STD_RICH) {
  482. memdelete(E.value);
  483. }
  484. }
  485. }