editor_log.cpp 19 KB

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