script_editor_debugger.cpp 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169
  1. /**************************************************************************/
  2. /* script_editor_debugger.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 "script_editor_debugger.h"
  31. #include "core/config/project_settings.h"
  32. #include "core/debugger/debugger_marshalls.h"
  33. #include "core/debugger/remote_debugger.h"
  34. #include "core/io/marshalls.h"
  35. #include "core/string/ustring.h"
  36. #include "core/version.h"
  37. #include "editor/debugger/debug_adapter/debug_adapter_protocol.h"
  38. #include "editor/debugger/editor_expression_evaluator.h"
  39. #include "editor/debugger/editor_performance_profiler.h"
  40. #include "editor/debugger/editor_profiler.h"
  41. #include "editor/debugger/editor_visual_profiler.h"
  42. #include "editor/editor_file_system.h"
  43. #include "editor/editor_log.h"
  44. #include "editor/editor_node.h"
  45. #include "editor/editor_property_name_processor.h"
  46. #include "editor/editor_settings.h"
  47. #include "editor/editor_string_names.h"
  48. #include "editor/gui/editor_file_dialog.h"
  49. #include "editor/inspector_dock.h"
  50. #include "editor/plugins/canvas_item_editor_plugin.h"
  51. #include "editor/plugins/editor_debugger_plugin.h"
  52. #include "editor/plugins/node_3d_editor_plugin.h"
  53. #include "editor/themes/editor_scale.h"
  54. #include "main/performance.h"
  55. #include "scene/3d/camera_3d.h"
  56. #include "scene/debugger/scene_debugger.h"
  57. #include "scene/gui/dialogs.h"
  58. #include "scene/gui/grid_container.h"
  59. #include "scene/gui/label.h"
  60. #include "scene/gui/line_edit.h"
  61. #include "scene/gui/margin_container.h"
  62. #include "scene/gui/rich_text_label.h"
  63. #include "scene/gui/separator.h"
  64. #include "scene/gui/split_container.h"
  65. #include "scene/gui/tab_container.h"
  66. #include "scene/gui/texture_button.h"
  67. #include "scene/gui/tree.h"
  68. #include "scene/resources/packed_scene.h"
  69. #include "servers/debugger/servers_debugger.h"
  70. #include "servers/display_server.h"
  71. using CameraOverride = EditorDebuggerNode::CameraOverride;
  72. void ScriptEditorDebugger::_put_msg(const String &p_message, const Array &p_data, uint64_t p_thread_id) {
  73. ERR_FAIL_COND(p_thread_id == Thread::UNASSIGNED_ID);
  74. if (is_session_active()) {
  75. Array msg;
  76. msg.push_back(p_message);
  77. msg.push_back(p_thread_id);
  78. msg.push_back(p_data);
  79. peer->put_message(msg);
  80. }
  81. }
  82. void ScriptEditorDebugger::debug_copy() {
  83. String msg = reason->get_text();
  84. if (msg.is_empty()) {
  85. return;
  86. }
  87. DisplayServer::get_singleton()->clipboard_set(msg);
  88. }
  89. void ScriptEditorDebugger::debug_skip_breakpoints() {
  90. skip_breakpoints_value = !skip_breakpoints_value;
  91. if (skip_breakpoints_value) {
  92. skip_breakpoints->set_button_icon(get_editor_theme_icon(SNAME("DebugSkipBreakpointsOn")));
  93. } else {
  94. skip_breakpoints->set_button_icon(get_editor_theme_icon(SNAME("DebugSkipBreakpointsOff")));
  95. }
  96. Array msg;
  97. msg.push_back(skip_breakpoints_value);
  98. _put_msg("set_skip_breakpoints", msg, debugging_thread_id != Thread::UNASSIGNED_ID ? debugging_thread_id : Thread::MAIN_ID);
  99. }
  100. void ScriptEditorDebugger::debug_next() {
  101. ERR_FAIL_COND(!is_breaked());
  102. _put_msg("next", Array(), debugging_thread_id);
  103. _clear_execution();
  104. }
  105. void ScriptEditorDebugger::debug_step() {
  106. ERR_FAIL_COND(!is_breaked());
  107. _put_msg("step", Array(), debugging_thread_id);
  108. _clear_execution();
  109. }
  110. void ScriptEditorDebugger::debug_break() {
  111. ERR_FAIL_COND(is_breaked());
  112. _put_msg("break", Array());
  113. }
  114. void ScriptEditorDebugger::debug_continue() {
  115. ERR_FAIL_COND(!is_breaked());
  116. // Allow focus stealing only if we actually run this client for security.
  117. if (remote_pid && EditorNode::get_singleton()->has_child_process(remote_pid)) {
  118. DisplayServer::get_singleton()->enable_for_stealing_focus(remote_pid);
  119. }
  120. _clear_execution();
  121. _put_msg("continue", Array(), debugging_thread_id);
  122. _put_msg("servers:foreground", Array());
  123. }
  124. void ScriptEditorDebugger::update_tabs() {
  125. if (error_count == 0 && warning_count == 0) {
  126. errors_tab->set_name(TTR("Errors"));
  127. tabs->set_tab_icon(tabs->get_tab_idx_from_control(errors_tab), Ref<Texture2D>());
  128. } else {
  129. errors_tab->set_name(TTR("Errors") + " (" + itos(error_count + warning_count) + ")");
  130. if (error_count >= 1 && warning_count >= 1) {
  131. tabs->set_tab_icon(tabs->get_tab_idx_from_control(errors_tab), get_editor_theme_icon(SNAME("ErrorWarning")));
  132. } else if (error_count >= 1) {
  133. tabs->set_tab_icon(tabs->get_tab_idx_from_control(errors_tab), get_editor_theme_icon(SNAME("Error")));
  134. } else {
  135. tabs->set_tab_icon(tabs->get_tab_idx_from_control(errors_tab), get_editor_theme_icon(SNAME("Warning")));
  136. }
  137. }
  138. }
  139. void ScriptEditorDebugger::clear_style() {
  140. tabs->remove_theme_style_override(SceneStringName(panel));
  141. }
  142. void ScriptEditorDebugger::save_node(ObjectID p_id, const String &p_file) {
  143. Array msg;
  144. msg.push_back(p_id);
  145. msg.push_back(p_file);
  146. _put_msg("scene:save_node", msg);
  147. }
  148. void ScriptEditorDebugger::_file_selected(const String &p_file) {
  149. switch (file_dialog_purpose) {
  150. case SAVE_MONITORS_CSV: {
  151. Error err;
  152. Ref<FileAccess> file = FileAccess::open(p_file, FileAccess::WRITE, &err);
  153. if (err != OK) {
  154. ERR_PRINT("Failed to open " + p_file);
  155. return;
  156. }
  157. Vector<String> line;
  158. line.resize(Performance::MONITOR_MAX);
  159. // signatures
  160. for (int i = 0; i < Performance::MONITOR_MAX; i++) {
  161. line.write[i] = Performance::get_singleton()->get_monitor_name(Performance::Monitor(i));
  162. }
  163. file->store_csv_line(line);
  164. // values
  165. Vector<List<float>::Element *> iterators;
  166. iterators.resize(Performance::MONITOR_MAX);
  167. bool continue_iteration = false;
  168. for (int i = 0; i < Performance::MONITOR_MAX; i++) {
  169. iterators.write[i] = performance_profiler->get_monitor_data(Performance::get_singleton()->get_monitor_name(Performance::Monitor(i)))->back();
  170. continue_iteration = continue_iteration || iterators[i];
  171. }
  172. while (continue_iteration) {
  173. continue_iteration = false;
  174. for (int i = 0; i < Performance::MONITOR_MAX; i++) {
  175. if (iterators[i]) {
  176. line.write[i] = String::num_real(iterators[i]->get());
  177. iterators.write[i] = iterators[i]->prev();
  178. } else {
  179. line.write[i] = "";
  180. }
  181. continue_iteration = continue_iteration || iterators[i];
  182. }
  183. file->store_csv_line(line);
  184. }
  185. file->store_string("\n");
  186. Vector<Vector<String>> profiler_data = profiler->get_data_as_csv();
  187. for (int i = 0; i < profiler_data.size(); i++) {
  188. file->store_csv_line(profiler_data[i]);
  189. }
  190. } break;
  191. case SAVE_VRAM_CSV: {
  192. Error err;
  193. Ref<FileAccess> file = FileAccess::open(p_file, FileAccess::WRITE, &err);
  194. if (err != OK) {
  195. ERR_PRINT("Failed to open " + p_file);
  196. return;
  197. }
  198. Vector<String> headers;
  199. headers.resize(vmem_tree->get_columns());
  200. for (int i = 0; i < vmem_tree->get_columns(); ++i) {
  201. headers.write[i] = vmem_tree->get_column_title(i);
  202. }
  203. file->store_csv_line(headers);
  204. if (vmem_tree->get_root()) {
  205. TreeItem *ti = vmem_tree->get_root()->get_first_child();
  206. while (ti) {
  207. Vector<String> values;
  208. values.resize(vmem_tree->get_columns());
  209. for (int i = 0; i < vmem_tree->get_columns(); ++i) {
  210. values.write[i] = ti->get_text(i);
  211. }
  212. file->store_csv_line(values);
  213. ti = ti->get_next();
  214. }
  215. }
  216. } break;
  217. }
  218. }
  219. void ScriptEditorDebugger::request_remote_tree() {
  220. _put_msg("scene:request_scene_tree", Array());
  221. }
  222. const SceneDebuggerTree *ScriptEditorDebugger::get_remote_tree() {
  223. return scene_tree;
  224. }
  225. void ScriptEditorDebugger::request_remote_evaluate(const String &p_expression, int p_stack_frame) {
  226. Array msg;
  227. msg.push_back(p_expression);
  228. msg.push_back(p_stack_frame);
  229. _put_msg("evaluate", msg);
  230. }
  231. void ScriptEditorDebugger::update_remote_object(ObjectID p_obj_id, const String &p_prop, const Variant &p_value) {
  232. Array msg;
  233. msg.push_back(p_obj_id);
  234. msg.push_back(p_prop);
  235. msg.push_back(p_value);
  236. _put_msg("scene:set_object_property", msg);
  237. }
  238. void ScriptEditorDebugger::request_remote_object(ObjectID p_obj_id) {
  239. ERR_FAIL_COND(p_obj_id.is_null());
  240. Array msg;
  241. msg.push_back(p_obj_id);
  242. _put_msg("scene:inspect_object", msg);
  243. }
  244. Object *ScriptEditorDebugger::get_remote_object(ObjectID p_id) {
  245. return inspector->get_object(p_id);
  246. }
  247. void ScriptEditorDebugger::_remote_object_selected(ObjectID p_id) {
  248. emit_signal(SNAME("remote_object_requested"), p_id);
  249. }
  250. void ScriptEditorDebugger::_remote_object_edited(ObjectID p_id, const String &p_prop, const Variant &p_value) {
  251. update_remote_object(p_id, p_prop, p_value);
  252. request_remote_object(p_id);
  253. }
  254. void ScriptEditorDebugger::_remote_object_property_updated(ObjectID p_id, const String &p_property) {
  255. emit_signal(SNAME("remote_object_property_updated"), p_id, p_property);
  256. }
  257. void ScriptEditorDebugger::_video_mem_request() {
  258. _put_msg("servers:memory", Array());
  259. }
  260. void ScriptEditorDebugger::_video_mem_export() {
  261. file_dialog->set_file_mode(EditorFileDialog::FILE_MODE_SAVE_FILE);
  262. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  263. file_dialog->clear_filters();
  264. file_dialog_purpose = SAVE_VRAM_CSV;
  265. file_dialog->popup_file_dialog();
  266. }
  267. Size2 ScriptEditorDebugger::get_minimum_size() const {
  268. Size2 ms = MarginContainer::get_minimum_size();
  269. ms.y = MAX(ms.y, 250 * EDSCALE);
  270. return ms;
  271. }
  272. void ScriptEditorDebugger::_thread_debug_enter(uint64_t p_thread_id) {
  273. ERR_FAIL_COND(!threads_debugged.has(p_thread_id));
  274. ThreadDebugged &td = threads_debugged[p_thread_id];
  275. _set_reason_text(td.error, MESSAGE_ERROR);
  276. emit_signal(SNAME("breaked"), true, td.can_debug, td.error, td.has_stackdump);
  277. if (!td.error.is_empty()) {
  278. tabs->set_current_tab(0);
  279. }
  280. inspector->clear_cache(); // Take a chance to force remote objects update.
  281. _put_msg("get_stack_dump", Array(), p_thread_id);
  282. }
  283. void ScriptEditorDebugger::_select_thread(int p_index) {
  284. debugging_thread_id = threads->get_item_metadata(threads->get_selected());
  285. _thread_debug_enter(debugging_thread_id);
  286. }
  287. void ScriptEditorDebugger::_parse_message(const String &p_msg, uint64_t p_thread_id, const Array &p_data) {
  288. emit_signal(SNAME("debug_data"), p_msg, p_data);
  289. if (p_msg == "debug_enter") {
  290. ERR_FAIL_COND(p_data.size() != 4);
  291. ThreadDebugged td;
  292. td.name = p_data[3];
  293. td.error = p_data[1];
  294. td.can_debug = p_data[0];
  295. td.has_stackdump = p_data[2];
  296. td.thread_id = p_thread_id;
  297. static uint32_t order_inc = 0;
  298. td.debug_order = order_inc++;
  299. threads_debugged.insert(p_thread_id, td);
  300. if (threads_debugged.size() == 1) {
  301. // First thread that requests debug
  302. debugging_thread_id = p_thread_id;
  303. _thread_debug_enter(p_thread_id);
  304. can_request_idle_draw = true;
  305. if (is_move_to_foreground()) {
  306. DisplayServer::get_singleton()->window_move_to_foreground();
  307. }
  308. profiler->set_enabled(false, false);
  309. visual_profiler->set_enabled(false);
  310. }
  311. _update_buttons_state();
  312. } else if (p_msg == "debug_exit") {
  313. threads_debugged.erase(p_thread_id);
  314. if (p_thread_id == debugging_thread_id) {
  315. _clear_execution();
  316. if (threads_debugged.size() == 0) {
  317. debugging_thread_id = Thread::UNASSIGNED_ID;
  318. } else {
  319. // Find next thread to debug.
  320. uint32_t min_order = 0xFFFFFFFF;
  321. uint64_t next_thread = Thread::UNASSIGNED_ID;
  322. for (KeyValue<uint64_t, ThreadDebugged> T : threads_debugged) {
  323. if (T.value.debug_order < min_order) {
  324. min_order = T.value.debug_order;
  325. next_thread = T.key;
  326. }
  327. }
  328. debugging_thread_id = next_thread;
  329. }
  330. if (debugging_thread_id == Thread::UNASSIGNED_ID) {
  331. // Nothing else to debug.
  332. profiler->set_enabled(true, false);
  333. profiler->disable_seeking();
  334. visual_profiler->set_enabled(true);
  335. _set_reason_text(TTR("Execution resumed."), MESSAGE_SUCCESS);
  336. emit_signal(SNAME("breaked"), false, false, "", false);
  337. _update_buttons_state();
  338. } else {
  339. _thread_debug_enter(debugging_thread_id);
  340. }
  341. } else {
  342. _update_buttons_state();
  343. }
  344. } else if (p_msg == "set_pid") {
  345. ERR_FAIL_COND(p_data.is_empty());
  346. remote_pid = p_data[0];
  347. } else if (p_msg == "scene:click_ctrl") {
  348. ERR_FAIL_COND(p_data.size() < 2);
  349. clicked_ctrl->set_text(p_data[0]);
  350. clicked_ctrl_type->set_text(p_data[1]);
  351. } else if (p_msg == "scene:scene_tree") {
  352. scene_tree->nodes.clear();
  353. scene_tree->deserialize(p_data);
  354. emit_signal(SNAME("remote_tree_updated"));
  355. _update_buttons_state();
  356. } else if (p_msg == "scene:inspect_object") {
  357. ObjectID id = inspector->add_object(p_data);
  358. if (id.is_valid()) {
  359. emit_signal(SNAME("remote_object_updated"), id);
  360. }
  361. } else if (p_msg == "servers:memory_usage") {
  362. vmem_tree->clear();
  363. TreeItem *root = vmem_tree->create_item();
  364. ServersDebugger::ResourceUsage usage;
  365. usage.deserialize(p_data);
  366. uint64_t total = 0;
  367. for (const ServersDebugger::ResourceInfo &E : usage.infos) {
  368. TreeItem *it = vmem_tree->create_item(root);
  369. String type = E.type;
  370. int bytes = E.vram;
  371. it->set_text(0, E.path);
  372. it->set_text(1, type);
  373. it->set_text(2, E.format);
  374. it->set_text(3, String::humanize_size(bytes));
  375. total += bytes;
  376. if (has_theme_icon(type, EditorStringName(EditorIcons))) {
  377. it->set_icon(0, get_editor_theme_icon(type));
  378. }
  379. }
  380. vmem_total->set_tooltip_text(TTR("Bytes:") + " " + itos(total));
  381. vmem_total->set_text(String::humanize_size(total));
  382. } else if (p_msg == "servers:drawn") {
  383. can_request_idle_draw = true;
  384. } else if (p_msg == "stack_dump") {
  385. DebuggerMarshalls::ScriptStackDump stack;
  386. stack.deserialize(p_data);
  387. stack_dump->clear();
  388. inspector->clear_stack_variables();
  389. TreeItem *r = stack_dump->create_item();
  390. Array stack_dump_info;
  391. int i = 0;
  392. for (List<ScriptLanguage::StackInfo>::Iterator itr = stack.frames.begin(); itr != stack.frames.end(); ++itr, ++i) {
  393. TreeItem *s = stack_dump->create_item(r);
  394. Dictionary d;
  395. d["frame"] = i;
  396. d["file"] = itr->file;
  397. d["function"] = itr->func;
  398. d["line"] = itr->line;
  399. stack_dump_info.push_back(d);
  400. s->set_metadata(0, d);
  401. String line = itos(i) + " - " + String(d["file"]) + ":" + itos(d["line"]) + " - at function: " + String(d["function"]);
  402. s->set_text(0, line);
  403. if (i == 0) {
  404. s->select(0);
  405. }
  406. }
  407. emit_signal(SNAME("stack_dump"), stack_dump_info);
  408. } else if (p_msg == "stack_frame_vars") {
  409. inspector->clear_stack_variables();
  410. ERR_FAIL_COND(p_data.size() != 1);
  411. emit_signal(SNAME("stack_frame_vars"), p_data[0]);
  412. } else if (p_msg == "stack_frame_var") {
  413. inspector->add_stack_variable(p_data);
  414. emit_signal(SNAME("stack_frame_var"), p_data);
  415. } else if (p_msg == "output") {
  416. ERR_FAIL_COND(p_data.size() != 2);
  417. ERR_FAIL_COND(p_data[0].get_type() != Variant::PACKED_STRING_ARRAY);
  418. Vector<String> output_strings = p_data[0];
  419. ERR_FAIL_COND(p_data[1].get_type() != Variant::PACKED_INT32_ARRAY);
  420. Vector<int> output_types = p_data[1];
  421. ERR_FAIL_COND(output_strings.size() != output_types.size());
  422. for (int i = 0; i < output_strings.size(); i++) {
  423. RemoteDebugger::MessageType type = (RemoteDebugger::MessageType)(int)(output_types[i]);
  424. EditorLog::MessageType msg_type;
  425. switch (type) {
  426. case RemoteDebugger::MESSAGE_TYPE_LOG: {
  427. msg_type = EditorLog::MSG_TYPE_STD;
  428. } break;
  429. case RemoteDebugger::MESSAGE_TYPE_LOG_RICH: {
  430. msg_type = EditorLog::MSG_TYPE_STD_RICH;
  431. } break;
  432. case RemoteDebugger::MESSAGE_TYPE_ERROR: {
  433. msg_type = EditorLog::MSG_TYPE_ERROR;
  434. } break;
  435. default: {
  436. WARN_PRINT("Unhandled script debugger message type: " + itos(type));
  437. msg_type = EditorLog::MSG_TYPE_STD;
  438. } break;
  439. }
  440. EditorNode::get_log()->add_message(output_strings[i], msg_type);
  441. emit_signal(SNAME("output"), output_strings[i], msg_type);
  442. }
  443. } else if (p_msg == "performance:profile_frame") {
  444. Vector<float> frame_data;
  445. frame_data.resize(p_data.size());
  446. for (int i = 0; i < p_data.size(); i++) {
  447. frame_data.write[i] = p_data[i];
  448. }
  449. performance_profiler->add_profile_frame(frame_data);
  450. } else if (p_msg == "visual:profile_frame") {
  451. ServersDebugger::VisualProfilerFrame frame;
  452. frame.deserialize(p_data);
  453. EditorVisualProfiler::Metric metric;
  454. metric.areas.resize(frame.areas.size());
  455. metric.frame_number = frame.frame_number;
  456. metric.valid = true;
  457. {
  458. EditorVisualProfiler::Metric::Area *areas_ptr = metric.areas.ptrw();
  459. for (int i = 0; i < frame.areas.size(); i++) {
  460. areas_ptr[i].name = frame.areas[i].name;
  461. areas_ptr[i].cpu_time = frame.areas[i].cpu_msec;
  462. areas_ptr[i].gpu_time = frame.areas[i].gpu_msec;
  463. }
  464. }
  465. visual_profiler->add_frame_metric(metric);
  466. } else if (p_msg == "error") {
  467. DebuggerMarshalls::OutputError oe;
  468. ERR_FAIL_COND_MSG(oe.deserialize(p_data) == false, "Failed to deserialize error message");
  469. // Format time.
  470. Array time_vals;
  471. time_vals.push_back(oe.hr);
  472. time_vals.push_back(oe.min);
  473. time_vals.push_back(oe.sec);
  474. time_vals.push_back(oe.msec);
  475. bool e;
  476. String time = String("%d:%02d:%02d:%04d").sprintf(time_vals, &e);
  477. // Rest of the error data.
  478. bool source_is_project_file = oe.source_file.begins_with("res://");
  479. // Metadata to highlight error line in scripts.
  480. Array source_meta;
  481. source_meta.push_back(oe.source_file);
  482. source_meta.push_back(oe.source_line);
  483. // Create error tree to display above error or warning details.
  484. TreeItem *r = error_tree->get_root();
  485. if (!r) {
  486. r = error_tree->create_item();
  487. }
  488. // Also provide the relevant details as tooltip to quickly check without
  489. // uncollapsing the tree.
  490. String tooltip = oe.warning ? TTR("Warning:") : TTR("Error:");
  491. TreeItem *error = error_tree->create_item(r);
  492. if (oe.warning) {
  493. error->set_meta("_is_warning", true);
  494. } else {
  495. error->set_meta("_is_error", true);
  496. }
  497. error->set_collapsed(true);
  498. error->set_icon(0, get_editor_theme_icon(oe.warning ? SNAME("Warning") : SNAME("Error")));
  499. error->set_text(0, time);
  500. error->set_text_alignment(0, HORIZONTAL_ALIGNMENT_LEFT);
  501. const Color color = get_theme_color(oe.warning ? SNAME("warning_color") : SNAME("error_color"), EditorStringName(Editor));
  502. error->set_custom_color(0, color);
  503. error->set_custom_color(1, color);
  504. String error_title;
  505. if (!oe.source_func.is_empty() && source_is_project_file) {
  506. // If source function is inside the project file.
  507. error_title += oe.source_func + ": ";
  508. } else if (oe.callstack.size() > 0) {
  509. // Otherwise, if available, use the script's stack in the error title.
  510. error_title = _format_frame_text(&oe.callstack[0]) + ": ";
  511. } else if (!oe.source_func.is_empty()) {
  512. // Otherwise try to use the C++ source function.
  513. error_title += oe.source_func + ": ";
  514. }
  515. // If we have a (custom) error message, use it as title, and add a C++ Error
  516. // item with the original error condition.
  517. error_title += oe.error_descr.is_empty() ? oe.error : oe.error_descr;
  518. error->set_text(1, error_title);
  519. tooltip += " " + error_title + "\n";
  520. // Find the language of the error's source file.
  521. String source_language_name = "C++"; // Default value is the old hard-coded one.
  522. const String source_file_extension = oe.source_file.get_extension();
  523. for (int i = 0; i < ScriptServer::get_language_count(); ++i) {
  524. ScriptLanguage *script_language = ScriptServer::get_language(i);
  525. if (source_file_extension == script_language->get_extension()) {
  526. source_language_name = script_language->get_name();
  527. break;
  528. }
  529. }
  530. if (!oe.error_descr.is_empty()) {
  531. // Add item for C++ error condition.
  532. TreeItem *cpp_cond = error_tree->create_item(error);
  533. // TRANSLATORS: %s is the name of a language, e.g. C++.
  534. cpp_cond->set_text(0, "<" + vformat(TTR("%s Error"), source_language_name) + ">");
  535. cpp_cond->set_text(1, oe.error);
  536. cpp_cond->set_text_alignment(0, HORIZONTAL_ALIGNMENT_LEFT);
  537. tooltip += vformat(TTR("%s Error:"), source_language_name) + " " + oe.error + "\n";
  538. if (source_is_project_file) {
  539. cpp_cond->set_metadata(0, source_meta);
  540. }
  541. }
  542. Vector<uint8_t> v;
  543. v.resize(100);
  544. // Source of the error.
  545. String source_txt = (source_is_project_file ? oe.source_file.get_file() : oe.source_file) + ":" + itos(oe.source_line);
  546. if (!oe.source_func.is_empty()) {
  547. source_txt += " @ " + oe.source_func;
  548. if (!oe.source_func.ends_with(")")) {
  549. source_txt += "()";
  550. }
  551. }
  552. TreeItem *cpp_source = error_tree->create_item(error);
  553. // TRANSLATORS: %s is the name of a language, e.g. C++.
  554. cpp_source->set_text(0, "<" + vformat(TTR("%s Source"), source_language_name) + ">");
  555. cpp_source->set_text(1, source_txt);
  556. cpp_source->set_text_alignment(0, HORIZONTAL_ALIGNMENT_LEFT);
  557. tooltip += vformat(TTR("%s Source:"), source_language_name) + " " + source_txt + "\n";
  558. // Set metadata to highlight error line in scripts.
  559. if (source_is_project_file) {
  560. error->set_metadata(0, source_meta);
  561. cpp_source->set_metadata(0, source_meta);
  562. }
  563. // Format stack trace.
  564. // stack_items_count is the number of elements to parse, with 3 items per frame
  565. // of the stack trace (script, method, line).
  566. const ScriptLanguage::StackInfo *infos = oe.callstack.ptr();
  567. for (unsigned int i = 0; i < (unsigned int)oe.callstack.size(); i++) {
  568. TreeItem *stack_trace = error_tree->create_item(error);
  569. Array meta;
  570. meta.push_back(infos[i].file);
  571. meta.push_back(infos[i].line);
  572. stack_trace->set_metadata(0, meta);
  573. if (i == 0) {
  574. stack_trace->set_text(0, "<" + TTR("Stack Trace") + ">");
  575. stack_trace->set_text_alignment(0, HORIZONTAL_ALIGNMENT_LEFT);
  576. if (!source_is_project_file) {
  577. // Only override metadata if the source is not inside the project.
  578. error->set_metadata(0, meta);
  579. }
  580. tooltip += TTR("Stack Trace:") + "\n";
  581. }
  582. String frame_txt = _format_frame_text(&infos[i]);
  583. tooltip += frame_txt + "\n";
  584. stack_trace->set_text(1, frame_txt);
  585. }
  586. error->set_tooltip_text(0, tooltip);
  587. error->set_tooltip_text(1, tooltip);
  588. if (warning_count == 0 && error_count == 0) {
  589. expand_all_button->set_disabled(false);
  590. collapse_all_button->set_disabled(false);
  591. clear_button->set_disabled(false);
  592. }
  593. if (oe.warning) {
  594. warning_count++;
  595. } else {
  596. error_count++;
  597. }
  598. } else if (p_msg == "servers:function_signature") {
  599. // Cache a profiler signature.
  600. ServersDebugger::ScriptFunctionSignature sig;
  601. sig.deserialize(p_data);
  602. profiler_signature[sig.id] = sig.name;
  603. } else if (p_msg == "servers:profile_frame" || p_msg == "servers:profile_total") {
  604. EditorProfiler::Metric metric;
  605. ServersDebugger::ServersProfilerFrame frame;
  606. frame.deserialize(p_data);
  607. metric.valid = true;
  608. metric.frame_number = frame.frame_number;
  609. metric.frame_time = frame.frame_time;
  610. metric.process_time = frame.process_time;
  611. metric.physics_time = frame.physics_time;
  612. metric.physics_frame_time = frame.physics_frame_time;
  613. if (frame.servers.size()) {
  614. EditorProfiler::Metric::Category frame_time;
  615. frame_time.signature = "category_frame_time";
  616. frame_time.name = "Frame Time";
  617. frame_time.total_time = metric.frame_time;
  618. EditorProfiler::Metric::Category::Item item;
  619. item.calls = 1;
  620. item.line = 0;
  621. item.name = "Physics Time";
  622. item.total = metric.physics_time;
  623. item.self = item.total;
  624. item.signature = "physics_time";
  625. frame_time.items.push_back(item);
  626. item.name = "Process Time";
  627. item.total = metric.process_time;
  628. item.self = item.total;
  629. item.signature = "process_time";
  630. frame_time.items.push_back(item);
  631. item.name = "Physics Frame Time";
  632. item.total = metric.physics_frame_time;
  633. item.self = item.total;
  634. item.signature = "physics_frame_time";
  635. frame_time.items.push_back(item);
  636. metric.categories.push_back(frame_time);
  637. }
  638. for (const ServersDebugger::ServerInfo &srv : frame.servers) {
  639. EditorProfiler::Metric::Category c;
  640. const String name = srv.name;
  641. c.name = EditorPropertyNameProcessor::get_singleton()->process_name(name, EditorPropertyNameProcessor::STYLE_CAPITALIZED);
  642. c.items.resize(srv.functions.size());
  643. c.total_time = 0;
  644. c.signature = "categ::" + name;
  645. int j = 0;
  646. for (List<ServersDebugger::ServerFunctionInfo>::ConstIterator itr = srv.functions.begin(); itr != srv.functions.end(); ++itr, ++j) {
  647. EditorProfiler::Metric::Category::Item item;
  648. item.calls = 1;
  649. item.line = 0;
  650. item.name = itr->name;
  651. item.self = itr->time;
  652. item.total = item.self;
  653. item.signature = "categ::" + name + "::" + item.name;
  654. item.name = EditorPropertyNameProcessor::get_singleton()->process_name(item.name, EditorPropertyNameProcessor::STYLE_CAPITALIZED);
  655. c.total_time += item.total;
  656. c.items.write[j] = item;
  657. }
  658. metric.categories.push_back(c);
  659. }
  660. EditorProfiler::Metric::Category funcs;
  661. funcs.total_time = frame.script_time;
  662. funcs.items.resize(frame.script_functions.size());
  663. funcs.name = "Script Functions";
  664. funcs.signature = "script_functions";
  665. for (int i = 0; i < frame.script_functions.size(); i++) {
  666. int signature = frame.script_functions[i].sig_id;
  667. int calls = frame.script_functions[i].call_count;
  668. float total = frame.script_functions[i].total_time;
  669. float self = frame.script_functions[i].self_time;
  670. float internal = frame.script_functions[i].internal_time;
  671. EditorProfiler::Metric::Category::Item item;
  672. if (profiler_signature.has(signature)) {
  673. item.signature = profiler_signature[signature];
  674. String name = profiler_signature[signature];
  675. Vector<String> strings = name.split("::");
  676. if (strings.size() == 3) {
  677. item.name = strings[2];
  678. item.script = strings[0];
  679. item.line = strings[1].to_int();
  680. } else if (strings.size() == 4) { //Built-in scripts have an :: in their name
  681. item.name = strings[3];
  682. item.script = strings[0] + "::" + strings[1];
  683. item.line = strings[2].to_int();
  684. }
  685. } else {
  686. item.name = "SigErr " + itos(signature);
  687. }
  688. item.calls = calls;
  689. item.self = self;
  690. item.total = total;
  691. item.internal = internal;
  692. funcs.items.write[i] = item;
  693. }
  694. metric.categories.push_back(funcs);
  695. if (p_msg == "servers:profile_frame") {
  696. profiler->add_frame_metric(metric, false);
  697. } else {
  698. profiler->add_frame_metric(metric, true);
  699. }
  700. } else if (p_msg == "request_quit") {
  701. emit_signal(SNAME("stop_requested"));
  702. _stop_and_notify();
  703. } else if (p_msg == "remote_node_clicked") {
  704. if (!p_data.is_empty()) {
  705. emit_signal(SNAME("remote_tree_select_requested"), p_data[0]);
  706. }
  707. } else if (p_msg == "performance:profile_names") {
  708. Vector<StringName> monitors;
  709. monitors.resize(p_data.size());
  710. for (int i = 0; i < p_data.size(); i++) {
  711. ERR_FAIL_COND(p_data[i].get_type() != Variant::STRING_NAME);
  712. monitors.set(i, p_data[i]);
  713. }
  714. performance_profiler->update_monitors(monitors);
  715. } else if (p_msg == "filesystem:update_file") {
  716. ERR_FAIL_COND(p_data.is_empty());
  717. if (EditorFileSystem::get_singleton()) {
  718. EditorFileSystem::get_singleton()->update_file(p_data[0]);
  719. }
  720. } else if (p_msg == "evaluation_return") {
  721. expression_evaluator->add_value(p_data);
  722. } else {
  723. int colon_index = p_msg.find_char(':');
  724. ERR_FAIL_COND_MSG(colon_index < 1, "Invalid message received");
  725. bool parsed = EditorDebuggerNode::get_singleton()->plugins_capture(this, p_msg, p_data);
  726. if (!parsed) {
  727. WARN_PRINT("Unknown message: " + p_msg);
  728. }
  729. }
  730. }
  731. void ScriptEditorDebugger::_set_reason_text(const String &p_reason, MessageType p_type) {
  732. switch (p_type) {
  733. case MESSAGE_ERROR:
  734. reason->add_theme_color_override(SceneStringName(font_color), get_theme_color(SNAME("error_color"), EditorStringName(Editor)));
  735. break;
  736. case MESSAGE_WARNING:
  737. reason->add_theme_color_override(SceneStringName(font_color), get_theme_color(SNAME("warning_color"), EditorStringName(Editor)));
  738. break;
  739. default:
  740. reason->add_theme_color_override(SceneStringName(font_color), get_theme_color(SNAME("success_color"), EditorStringName(Editor)));
  741. }
  742. reason->set_text(p_reason);
  743. const PackedInt32Array boundaries = TS->string_get_word_breaks(p_reason, "", 80);
  744. PackedStringArray lines;
  745. for (int i = 0; i < boundaries.size(); i += 2) {
  746. const int start = boundaries[i];
  747. const int end = boundaries[i + 1];
  748. lines.append(p_reason.substr(start, end - start));
  749. }
  750. reason->set_tooltip_text(String("\n").join(lines));
  751. }
  752. void ScriptEditorDebugger::_notification(int p_what) {
  753. switch (p_what) {
  754. case NOTIFICATION_ENTER_TREE: {
  755. le_set->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::_live_edit_set));
  756. le_clear->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::_live_edit_clear));
  757. error_tree->connect(SceneStringName(item_selected), callable_mp(this, &ScriptEditorDebugger::_error_selected));
  758. error_tree->connect("item_activated", callable_mp(this, &ScriptEditorDebugger::_error_activated));
  759. breakpoints_tree->connect("item_activated", callable_mp(this, &ScriptEditorDebugger::_breakpoint_tree_clicked));
  760. connect("started", callable_mp(expression_evaluator, &EditorExpressionEvaluator::on_start));
  761. } break;
  762. case NOTIFICATION_THEME_CHANGED: {
  763. tabs->add_theme_style_override(SceneStringName(panel), get_theme_stylebox(SNAME("DebuggerPanel"), EditorStringName(EditorStyles)));
  764. skip_breakpoints->set_button_icon(get_editor_theme_icon(skip_breakpoints_value ? SNAME("DebugSkipBreakpointsOn") : SNAME("DebugSkipBreakpointsOff")));
  765. copy->set_button_icon(get_editor_theme_icon(SNAME("ActionCopy")));
  766. step->set_button_icon(get_editor_theme_icon(SNAME("DebugStep")));
  767. next->set_button_icon(get_editor_theme_icon(SNAME("DebugNext")));
  768. dobreak->set_button_icon(get_editor_theme_icon(SNAME("Pause")));
  769. docontinue->set_button_icon(get_editor_theme_icon(SNAME("DebugContinue")));
  770. vmem_refresh->set_button_icon(get_editor_theme_icon(SNAME("Reload")));
  771. vmem_export->set_button_icon(get_editor_theme_icon(SNAME("Save")));
  772. search->set_right_icon(get_editor_theme_icon(SNAME("Search")));
  773. reason->add_theme_color_override(SceneStringName(font_color), get_theme_color(SNAME("error_color"), EditorStringName(Editor)));
  774. TreeItem *error_root = error_tree->get_root();
  775. if (error_root) {
  776. TreeItem *error = error_root->get_first_child();
  777. while (error) {
  778. if (error->has_meta("_is_warning")) {
  779. error->set_icon(0, get_editor_theme_icon(SNAME("Warning")));
  780. error->set_custom_color(0, get_theme_color(SNAME("warning_color"), EditorStringName(Editor)));
  781. error->set_custom_color(1, get_theme_color(SNAME("warning_color"), EditorStringName(Editor)));
  782. } else if (error->has_meta("_is_error")) {
  783. error->set_icon(0, get_editor_theme_icon(SNAME("Error")));
  784. error->set_custom_color(0, get_theme_color(SNAME("error_color"), EditorStringName(Editor)));
  785. error->set_custom_color(1, get_theme_color(SNAME("error_color"), EditorStringName(Editor)));
  786. }
  787. error = error->get_next();
  788. }
  789. }
  790. } break;
  791. case NOTIFICATION_PROCESS: {
  792. if (is_session_active()) {
  793. peer->poll();
  794. if (camera_override == CameraOverride::OVERRIDE_EDITORS) {
  795. // CanvasItem Editor
  796. {
  797. Dictionary state = CanvasItemEditor::get_singleton()->get_state();
  798. float zoom = state["zoom"];
  799. Point2 offset = state["ofs"];
  800. Transform2D transform;
  801. transform.scale_basis(Size2(zoom, zoom));
  802. transform.columns[2] = -offset * zoom;
  803. Array msg;
  804. msg.push_back(transform);
  805. _put_msg("scene:transform_camera_2d", msg);
  806. }
  807. // Node3D Editor
  808. {
  809. Node3DEditorViewport *viewport = Node3DEditor::get_singleton()->get_last_used_viewport();
  810. const Camera3D *cam = viewport->get_camera_3d();
  811. Array msg;
  812. msg.push_back(cam->get_camera_transform());
  813. if (cam->get_projection() == Camera3D::PROJECTION_ORTHOGONAL) {
  814. msg.push_back(false);
  815. msg.push_back(cam->get_size());
  816. } else {
  817. msg.push_back(true);
  818. msg.push_back(cam->get_fov());
  819. }
  820. msg.push_back(cam->get_near());
  821. msg.push_back(cam->get_far());
  822. _put_msg("scene:transform_camera_3d", msg);
  823. }
  824. }
  825. if (is_breaked() && can_request_idle_draw) {
  826. _put_msg("servers:draw", Array());
  827. can_request_idle_draw = false;
  828. }
  829. }
  830. const uint64_t until = OS::get_singleton()->get_ticks_msec() + 20;
  831. while (peer.is_valid() && peer->has_message()) {
  832. Array arr = peer->get_message();
  833. if (arr.size() != 3 || arr[0].get_type() != Variant::STRING || arr[1].get_type() != Variant::INT || arr[2].get_type() != Variant::ARRAY) {
  834. _stop_and_notify();
  835. ERR_FAIL_MSG("Invalid message format received from peer");
  836. }
  837. _parse_message(arr[0], arr[1], arr[2]);
  838. if (OS::get_singleton()->get_ticks_msec() > until) {
  839. break;
  840. }
  841. }
  842. if (!is_session_active()) {
  843. _stop_and_notify();
  844. break;
  845. };
  846. } break;
  847. }
  848. }
  849. void ScriptEditorDebugger::_clear_execution() {
  850. TreeItem *ti = stack_dump->get_selected();
  851. if (!ti) {
  852. return;
  853. }
  854. Dictionary d = ti->get_metadata(0);
  855. stack_script = ResourceLoader::load(d["file"]);
  856. emit_signal(SNAME("clear_execution"), stack_script);
  857. stack_script.unref();
  858. stack_dump->clear();
  859. inspector->clear_stack_variables();
  860. }
  861. void ScriptEditorDebugger::_set_breakpoint(const String &p_file, const int &p_line, const bool &p_enabled) {
  862. Ref<Script> scr = ResourceLoader::load(p_file);
  863. emit_signal(SNAME("set_breakpoint"), scr, p_line - 1, p_enabled);
  864. scr.unref();
  865. }
  866. void ScriptEditorDebugger::_clear_breakpoints() {
  867. emit_signal(SNAME("clear_breakpoints"));
  868. }
  869. void ScriptEditorDebugger::_breakpoint_tree_clicked() {
  870. TreeItem *selected = breakpoints_tree->get_selected();
  871. if (selected->has_meta("line")) {
  872. emit_signal(SNAME("breakpoint_selected"), selected->get_parent()->get_text(0), int(selected->get_meta("line")));
  873. }
  874. }
  875. String ScriptEditorDebugger::_format_frame_text(const ScriptLanguage::StackInfo *info) {
  876. String text = info->file.get_file() + ":" + itos(info->line) + " @ " + info->func;
  877. if (!text.ends_with(")")) {
  878. text += "()";
  879. }
  880. return text;
  881. }
  882. void ScriptEditorDebugger::start(Ref<RemoteDebuggerPeer> p_peer) {
  883. _clear_errors_list();
  884. stop();
  885. profiler->set_enabled(true, true);
  886. visual_profiler->set_enabled(true);
  887. peer = p_peer;
  888. ERR_FAIL_COND(p_peer.is_null());
  889. performance_profiler->reset();
  890. set_process(true);
  891. camera_override = CameraOverride::OVERRIDE_NONE;
  892. _set_reason_text(TTR("Debug session started."), MESSAGE_SUCCESS);
  893. _update_buttons_state();
  894. emit_signal(SNAME("started"));
  895. if (EditorSettings::get_singleton()->get_project_metadata("debug_options", "autostart_profiler", false)) {
  896. profiler->set_profiling(true);
  897. }
  898. if (EditorSettings::get_singleton()->get_project_metadata("debug_options", "autostart_visual_profiler", false)) {
  899. visual_profiler->set_profiling(true);
  900. }
  901. }
  902. void ScriptEditorDebugger::_update_buttons_state() {
  903. const bool active = is_session_active();
  904. const bool has_editor_tree = active && editor_remote_tree && editor_remote_tree->get_selected();
  905. vmem_refresh->set_disabled(!active);
  906. step->set_disabled(!active || !is_breaked() || !is_debuggable());
  907. next->set_disabled(!active || !is_breaked() || !is_debuggable());
  908. copy->set_disabled(!active || !is_breaked());
  909. docontinue->set_disabled(!active || !is_breaked());
  910. dobreak->set_disabled(!active || is_breaked());
  911. le_clear->set_disabled(!active);
  912. le_set->set_disabled(!has_editor_tree);
  913. thread_list_updating = true;
  914. LocalVector<ThreadDebugged *> threadss;
  915. for (KeyValue<uint64_t, ThreadDebugged> &I : threads_debugged) {
  916. threadss.push_back(&I.value);
  917. }
  918. threadss.sort_custom<ThreadSort>();
  919. threads->clear();
  920. int32_t selected_index = -1;
  921. for (uint32_t i = 0; i < threadss.size(); i++) {
  922. if (debugging_thread_id == threadss[i]->thread_id) {
  923. selected_index = i;
  924. }
  925. threads->add_item(threadss[i]->name);
  926. threads->set_item_metadata(threads->get_item_count() - 1, threadss[i]->thread_id);
  927. }
  928. if (selected_index != -1) {
  929. threads->select(selected_index);
  930. }
  931. thread_list_updating = false;
  932. }
  933. void ScriptEditorDebugger::_stop_and_notify() {
  934. stop();
  935. emit_signal(SNAME("stopped"));
  936. _set_reason_text(TTR("Debug session closed."), MESSAGE_WARNING);
  937. }
  938. void ScriptEditorDebugger::stop() {
  939. set_process(false);
  940. threads_debugged.clear();
  941. debugging_thread_id = Thread::UNASSIGNED_ID;
  942. remote_pid = 0;
  943. _clear_execution();
  944. inspector->clear_cache();
  945. if (peer.is_valid()) {
  946. peer->close();
  947. peer.unref();
  948. reason->set_text("");
  949. reason->set_tooltip_text("");
  950. }
  951. node_path_cache.clear();
  952. res_path_cache.clear();
  953. profiler_signature.clear();
  954. profiler->set_enabled(false, false);
  955. profiler->set_profiling(false);
  956. visual_profiler->set_enabled(false);
  957. visual_profiler->set_profiling(false);
  958. inspector->edit(nullptr);
  959. _update_buttons_state();
  960. }
  961. void ScriptEditorDebugger::_profiler_activate(bool p_enable, int p_type) {
  962. Array msg_data;
  963. msg_data.push_back(p_enable);
  964. switch (p_type) {
  965. case PROFILER_VISUAL:
  966. _put_msg("profiler:visual", msg_data);
  967. break;
  968. case PROFILER_SCRIPTS_SERVERS:
  969. if (p_enable) {
  970. // Clear old script signatures. (should we move all this into the profiler?)
  971. profiler_signature.clear();
  972. // Add max funcs options to request.
  973. Array opts;
  974. int max_funcs = EDITOR_GET("debugger/profiler_frame_max_functions");
  975. bool include_native = EDITOR_GET("debugger/profile_native_calls");
  976. opts.push_back(CLAMP(max_funcs, 16, 512));
  977. opts.push_back(include_native);
  978. msg_data.push_back(opts);
  979. }
  980. _put_msg("profiler:servers", msg_data);
  981. break;
  982. default:
  983. ERR_FAIL_MSG("Invalid profiler type");
  984. }
  985. }
  986. void ScriptEditorDebugger::_profiler_seeked() {
  987. if (is_breaked()) {
  988. return;
  989. }
  990. debug_break();
  991. }
  992. void ScriptEditorDebugger::_stack_dump_frame_selected() {
  993. emit_signal(SNAME("stack_frame_selected"));
  994. int frame = get_stack_script_frame();
  995. if (!request_stack_dump(frame)) {
  996. inspector->edit(nullptr);
  997. }
  998. }
  999. void ScriptEditorDebugger::_export_csv() {
  1000. file_dialog->set_file_mode(EditorFileDialog::FILE_MODE_SAVE_FILE);
  1001. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  1002. file_dialog_purpose = SAVE_MONITORS_CSV;
  1003. file_dialog->popup_file_dialog();
  1004. }
  1005. String ScriptEditorDebugger::get_var_value(const String &p_var) const {
  1006. if (!is_breaked()) {
  1007. return String();
  1008. }
  1009. return inspector->get_stack_variable(p_var);
  1010. }
  1011. void ScriptEditorDebugger::_resources_reimported(const PackedStringArray &p_resources) {
  1012. Array msg;
  1013. msg.push_back(p_resources);
  1014. _put_msg("scene:reload_cached_files", msg);
  1015. }
  1016. int ScriptEditorDebugger::_get_node_path_cache(const NodePath &p_path) {
  1017. const int *r = node_path_cache.getptr(p_path);
  1018. if (r) {
  1019. return *r;
  1020. }
  1021. last_path_id++;
  1022. node_path_cache[p_path] = last_path_id;
  1023. Array msg;
  1024. msg.push_back(p_path);
  1025. msg.push_back(last_path_id);
  1026. _put_msg("scene:live_node_path", msg);
  1027. return last_path_id;
  1028. }
  1029. int ScriptEditorDebugger::_get_res_path_cache(const String &p_path) {
  1030. HashMap<String, int>::Iterator E = res_path_cache.find(p_path);
  1031. if (E) {
  1032. return E->value;
  1033. }
  1034. last_path_id++;
  1035. res_path_cache[p_path] = last_path_id;
  1036. Array msg;
  1037. msg.push_back(p_path);
  1038. msg.push_back(last_path_id);
  1039. _put_msg("scene:live_res_path", msg);
  1040. return last_path_id;
  1041. }
  1042. void ScriptEditorDebugger::_method_changed(Object *p_base, const StringName &p_name, const Variant **p_args, int p_argcount) {
  1043. if (!p_base || !live_debug || !is_session_active() || !EditorNode::get_singleton()->get_edited_scene()) {
  1044. return;
  1045. }
  1046. Node *node = Object::cast_to<Node>(p_base);
  1047. for (int i = 0; i < p_argcount; i++) {
  1048. //no pointers, sorry
  1049. if (p_args[i]->get_type() == Variant::OBJECT || p_args[i]->get_type() == Variant::RID) {
  1050. return;
  1051. }
  1052. }
  1053. if (node) {
  1054. NodePath path = EditorNode::get_singleton()->get_edited_scene()->get_path_to(node);
  1055. int pathid = _get_node_path_cache(path);
  1056. Array msg;
  1057. msg.push_back(pathid);
  1058. msg.push_back(p_name);
  1059. for (int i = 0; i < p_argcount; i++) {
  1060. //no pointers, sorry
  1061. msg.push_back(*p_args[i]);
  1062. }
  1063. _put_msg("scene:live_node_call", msg);
  1064. return;
  1065. }
  1066. Resource *res = Object::cast_to<Resource>(p_base);
  1067. if (res && !res->get_path().is_empty()) {
  1068. String respath = res->get_path();
  1069. int pathid = _get_res_path_cache(respath);
  1070. Array msg;
  1071. msg.push_back(pathid);
  1072. msg.push_back(p_name);
  1073. for (int i = 0; i < p_argcount; i++) {
  1074. //no pointers, sorry
  1075. msg.push_back(*p_args[i]);
  1076. }
  1077. _put_msg("scene:live_res_call", msg);
  1078. return;
  1079. }
  1080. }
  1081. void ScriptEditorDebugger::_property_changed(Object *p_base, const StringName &p_property, const Variant &p_value) {
  1082. if (!p_base || !live_debug || !EditorNode::get_singleton()->get_edited_scene()) {
  1083. return;
  1084. }
  1085. Node *node = Object::cast_to<Node>(p_base);
  1086. if (node) {
  1087. NodePath path = EditorNode::get_singleton()->get_edited_scene()->get_path_to(node);
  1088. int pathid = _get_node_path_cache(path);
  1089. if (p_value.is_ref_counted()) {
  1090. Ref<Resource> res = p_value;
  1091. if (res.is_valid() && !res->get_path().is_empty()) {
  1092. Array msg;
  1093. msg.push_back(pathid);
  1094. msg.push_back(p_property);
  1095. msg.push_back(res->get_path());
  1096. _put_msg("scene:live_node_prop_res", msg);
  1097. }
  1098. } else {
  1099. Array msg;
  1100. msg.push_back(pathid);
  1101. msg.push_back(p_property);
  1102. msg.push_back(p_value);
  1103. _put_msg("scene:live_node_prop", msg);
  1104. }
  1105. return;
  1106. }
  1107. Resource *res = Object::cast_to<Resource>(p_base);
  1108. if (res && !res->get_path().is_empty()) {
  1109. String respath = res->get_path();
  1110. int pathid = _get_res_path_cache(respath);
  1111. if (p_value.is_ref_counted()) {
  1112. Ref<Resource> res2 = p_value;
  1113. if (res2.is_valid() && !res2->get_path().is_empty()) {
  1114. Array msg;
  1115. msg.push_back(pathid);
  1116. msg.push_back(p_property);
  1117. msg.push_back(res2->get_path());
  1118. _put_msg("scene:live_res_prop_res", msg);
  1119. }
  1120. } else {
  1121. Array msg;
  1122. msg.push_back(pathid);
  1123. msg.push_back(p_property);
  1124. msg.push_back(p_value);
  1125. _put_msg("scene:live_res_prop", msg);
  1126. }
  1127. return;
  1128. }
  1129. }
  1130. bool ScriptEditorDebugger::is_move_to_foreground() const {
  1131. return move_to_foreground;
  1132. }
  1133. void ScriptEditorDebugger::set_move_to_foreground(const bool &p_move_to_foreground) {
  1134. move_to_foreground = p_move_to_foreground;
  1135. }
  1136. String ScriptEditorDebugger::get_stack_script_file() const {
  1137. TreeItem *ti = stack_dump->get_selected();
  1138. if (!ti) {
  1139. return "";
  1140. }
  1141. Dictionary d = ti->get_metadata(0);
  1142. return d["file"];
  1143. }
  1144. int ScriptEditorDebugger::get_stack_script_line() const {
  1145. TreeItem *ti = stack_dump->get_selected();
  1146. if (!ti) {
  1147. return -1;
  1148. }
  1149. Dictionary d = ti->get_metadata(0);
  1150. return d["line"];
  1151. }
  1152. int ScriptEditorDebugger::get_stack_script_frame() const {
  1153. TreeItem *ti = stack_dump->get_selected();
  1154. if (!ti) {
  1155. return -1;
  1156. }
  1157. Dictionary d = ti->get_metadata(0);
  1158. return d["frame"];
  1159. }
  1160. bool ScriptEditorDebugger::request_stack_dump(const int &p_frame) {
  1161. ERR_FAIL_COND_V(!is_session_active() || p_frame < 0, false);
  1162. Array msg;
  1163. msg.push_back(p_frame);
  1164. _put_msg("get_stack_frame_vars", msg, debugging_thread_id);
  1165. return true;
  1166. }
  1167. void ScriptEditorDebugger::set_live_debugging(bool p_enable) {
  1168. live_debug = p_enable;
  1169. }
  1170. void ScriptEditorDebugger::_live_edit_set() {
  1171. if (!is_session_active() || !editor_remote_tree) {
  1172. return;
  1173. }
  1174. TreeItem *ti = editor_remote_tree->get_selected();
  1175. if (!ti) {
  1176. return;
  1177. }
  1178. String path;
  1179. while (ti) {
  1180. String lp = ti->get_text(0);
  1181. path = "/" + lp + path;
  1182. ti = ti->get_parent();
  1183. }
  1184. NodePath np = path;
  1185. EditorNode::get_editor_data().set_edited_scene_live_edit_root(np);
  1186. update_live_edit_root();
  1187. }
  1188. void ScriptEditorDebugger::_live_edit_clear() {
  1189. NodePath np = NodePath("/root");
  1190. EditorNode::get_editor_data().set_edited_scene_live_edit_root(np);
  1191. update_live_edit_root();
  1192. }
  1193. void ScriptEditorDebugger::update_live_edit_root() {
  1194. NodePath np = EditorNode::get_editor_data().get_edited_scene_live_edit_root();
  1195. Array msg;
  1196. msg.push_back(np);
  1197. if (EditorNode::get_singleton()->get_edited_scene()) {
  1198. msg.push_back(EditorNode::get_singleton()->get_edited_scene()->get_scene_file_path());
  1199. } else {
  1200. msg.push_back("");
  1201. }
  1202. _put_msg("scene:live_set_root", msg);
  1203. live_edit_root->set_text(np);
  1204. }
  1205. void ScriptEditorDebugger::live_debug_create_node(const NodePath &p_parent, const String &p_type, const String &p_name) {
  1206. if (live_debug) {
  1207. Array msg;
  1208. msg.push_back(p_parent);
  1209. msg.push_back(p_type);
  1210. msg.push_back(p_name);
  1211. _put_msg("scene:live_create_node", msg);
  1212. }
  1213. }
  1214. void ScriptEditorDebugger::live_debug_instantiate_node(const NodePath &p_parent, const String &p_path, const String &p_name) {
  1215. if (live_debug) {
  1216. Array msg;
  1217. msg.push_back(p_parent);
  1218. msg.push_back(p_path);
  1219. msg.push_back(p_name);
  1220. _put_msg("scene:live_instantiate_node", msg);
  1221. }
  1222. }
  1223. void ScriptEditorDebugger::live_debug_remove_node(const NodePath &p_at) {
  1224. if (live_debug) {
  1225. Array msg;
  1226. msg.push_back(p_at);
  1227. _put_msg("scene:live_remove_node", msg);
  1228. }
  1229. }
  1230. void ScriptEditorDebugger::live_debug_remove_and_keep_node(const NodePath &p_at, ObjectID p_keep_id) {
  1231. if (live_debug) {
  1232. Array msg;
  1233. msg.push_back(p_at);
  1234. msg.push_back(p_keep_id);
  1235. _put_msg("scene:live_remove_and_keep_node", msg);
  1236. }
  1237. }
  1238. void ScriptEditorDebugger::live_debug_restore_node(ObjectID p_id, const NodePath &p_at, int p_at_pos) {
  1239. if (live_debug) {
  1240. Array msg;
  1241. msg.push_back(p_id);
  1242. msg.push_back(p_at);
  1243. msg.push_back(p_at_pos);
  1244. _put_msg("scene:live_restore_node", msg);
  1245. }
  1246. }
  1247. void ScriptEditorDebugger::live_debug_duplicate_node(const NodePath &p_at, const String &p_new_name) {
  1248. if (live_debug) {
  1249. Array msg;
  1250. msg.push_back(p_at);
  1251. msg.push_back(p_new_name);
  1252. _put_msg("scene:live_duplicate_node", msg);
  1253. }
  1254. }
  1255. void ScriptEditorDebugger::live_debug_reparent_node(const NodePath &p_at, const NodePath &p_new_place, const String &p_new_name, int p_at_pos) {
  1256. if (live_debug) {
  1257. Array msg;
  1258. msg.push_back(p_at);
  1259. msg.push_back(p_new_place);
  1260. msg.push_back(p_new_name);
  1261. msg.push_back(p_at_pos);
  1262. _put_msg("scene:live_reparent_node", msg);
  1263. }
  1264. }
  1265. CameraOverride ScriptEditorDebugger::get_camera_override() const {
  1266. return camera_override;
  1267. }
  1268. void ScriptEditorDebugger::set_camera_override(CameraOverride p_override) {
  1269. Array msg;
  1270. msg.push_back(p_override != CameraOverride::OVERRIDE_NONE);
  1271. msg.push_back(p_override == CameraOverride::OVERRIDE_EDITORS);
  1272. _put_msg("scene:override_cameras", msg);
  1273. camera_override = p_override;
  1274. }
  1275. void ScriptEditorDebugger::set_breakpoint(const String &p_path, int p_line, bool p_enabled) {
  1276. Array msg;
  1277. msg.push_back(p_path);
  1278. msg.push_back(p_line);
  1279. msg.push_back(p_enabled);
  1280. _put_msg("breakpoint", msg, debugging_thread_id != Thread::UNASSIGNED_ID ? debugging_thread_id : Thread::MAIN_ID);
  1281. TreeItem *path_item = breakpoints_tree->search_item_text(p_path);
  1282. if (path_item == nullptr) {
  1283. if (!p_enabled) {
  1284. return;
  1285. }
  1286. path_item = breakpoints_tree->create_item();
  1287. path_item->set_text(0, p_path);
  1288. }
  1289. int idx = 0;
  1290. TreeItem *breakpoint_item;
  1291. for (breakpoint_item = path_item->get_first_child(); breakpoint_item; breakpoint_item = breakpoint_item->get_next()) {
  1292. if ((int)breakpoint_item->get_meta("line") < p_line) {
  1293. idx++;
  1294. continue;
  1295. }
  1296. if ((int)breakpoint_item->get_meta("line") == p_line) {
  1297. break;
  1298. }
  1299. }
  1300. if (breakpoint_item == nullptr) {
  1301. if (!p_enabled) {
  1302. return;
  1303. }
  1304. breakpoint_item = breakpoints_tree->create_item(path_item, idx);
  1305. breakpoint_item->set_meta("line", p_line);
  1306. breakpoint_item->set_text(0, vformat(TTR("Line %d"), p_line));
  1307. return;
  1308. }
  1309. if (!p_enabled) {
  1310. path_item->remove_child(breakpoint_item);
  1311. if (path_item->get_first_child() == nullptr) {
  1312. breakpoints_tree->get_root()->remove_child(path_item);
  1313. }
  1314. }
  1315. }
  1316. void ScriptEditorDebugger::reload_all_scripts() {
  1317. _put_msg("reload_all_scripts", Array(), debugging_thread_id != Thread::UNASSIGNED_ID ? debugging_thread_id : Thread::MAIN_ID);
  1318. }
  1319. void ScriptEditorDebugger::reload_scripts(const Vector<String> &p_script_paths) {
  1320. _put_msg("reload_scripts", Variant(p_script_paths).operator Array(), debugging_thread_id != Thread::UNASSIGNED_ID ? debugging_thread_id : Thread::MAIN_ID);
  1321. }
  1322. bool ScriptEditorDebugger::is_skip_breakpoints() {
  1323. return skip_breakpoints_value;
  1324. }
  1325. void ScriptEditorDebugger::_error_activated() {
  1326. TreeItem *selected = error_tree->get_selected();
  1327. if (!selected) {
  1328. return;
  1329. }
  1330. TreeItem *ci = selected->get_first_child();
  1331. if (ci) {
  1332. selected->set_collapsed(!selected->is_collapsed());
  1333. }
  1334. }
  1335. void ScriptEditorDebugger::_error_selected() {
  1336. TreeItem *selected = error_tree->get_selected();
  1337. if (!selected) {
  1338. return;
  1339. }
  1340. Array meta = selected->get_metadata(0);
  1341. if (meta.size() == 0) {
  1342. return;
  1343. }
  1344. emit_signal(SNAME("error_selected"), String(meta[0]), int(meta[1]));
  1345. }
  1346. void ScriptEditorDebugger::_expand_errors_list() {
  1347. TreeItem *root = error_tree->get_root();
  1348. if (!root) {
  1349. return;
  1350. }
  1351. TreeItem *item = root->get_first_child();
  1352. while (item) {
  1353. item->set_collapsed(false);
  1354. item = item->get_next();
  1355. }
  1356. }
  1357. void ScriptEditorDebugger::_collapse_errors_list() {
  1358. TreeItem *root = error_tree->get_root();
  1359. if (!root) {
  1360. return;
  1361. }
  1362. TreeItem *item = root->get_first_child();
  1363. while (item) {
  1364. item->set_collapsed(true);
  1365. item = item->get_next();
  1366. }
  1367. }
  1368. void ScriptEditorDebugger::_clear_errors_list() {
  1369. error_tree->clear();
  1370. error_count = 0;
  1371. warning_count = 0;
  1372. emit_signal(SNAME("errors_cleared"));
  1373. update_tabs();
  1374. expand_all_button->set_disabled(true);
  1375. collapse_all_button->set_disabled(true);
  1376. clear_button->set_disabled(true);
  1377. }
  1378. void ScriptEditorDebugger::_breakpoints_item_rmb_selected(const Vector2 &p_pos, MouseButton p_button) {
  1379. if (p_button != MouseButton::RIGHT) {
  1380. return;
  1381. }
  1382. breakpoints_menu->clear();
  1383. breakpoints_menu->set_size(Size2(1, 1));
  1384. const TreeItem *selected = breakpoints_tree->get_selected();
  1385. String file = selected->get_text(0);
  1386. if (selected->has_meta("line")) {
  1387. breakpoints_menu->add_icon_item(get_editor_theme_icon(SNAME("Remove")), TTR("Delete Breakpoint"), ACTION_DELETE_BREAKPOINT);
  1388. file = selected->get_parent()->get_text(0);
  1389. }
  1390. breakpoints_menu->add_icon_item(get_editor_theme_icon(SNAME("Remove")), TTR("Delete All Breakpoints in:") + " " + file, ACTION_DELETE_BREAKPOINTS_IN_FILE);
  1391. breakpoints_menu->add_icon_item(get_editor_theme_icon(SNAME("Remove")), TTR("Delete All Breakpoints"), ACTION_DELETE_ALL_BREAKPOINTS);
  1392. breakpoints_menu->set_position(get_screen_position() + get_local_mouse_position());
  1393. breakpoints_menu->popup();
  1394. }
  1395. // Right click on specific file(s) or folder(s).
  1396. void ScriptEditorDebugger::_error_tree_item_rmb_selected(const Vector2 &p_pos, MouseButton p_button) {
  1397. if (p_button != MouseButton::RIGHT) {
  1398. return;
  1399. }
  1400. item_menu->clear();
  1401. item_menu->reset_size();
  1402. if (error_tree->is_anything_selected()) {
  1403. item_menu->add_icon_item(get_editor_theme_icon(SNAME("ActionCopy")), TTR("Copy Error"), ACTION_COPY_ERROR);
  1404. item_menu->add_icon_item(get_editor_theme_icon(SNAME("ExternalLink")), TTR("Open C++ Source on GitHub"), ACTION_OPEN_SOURCE);
  1405. }
  1406. if (item_menu->get_item_count() > 0) {
  1407. item_menu->set_position(error_tree->get_screen_position() + p_pos);
  1408. item_menu->popup();
  1409. }
  1410. }
  1411. void ScriptEditorDebugger::_item_menu_id_pressed(int p_option) {
  1412. switch (p_option) {
  1413. case ACTION_COPY_ERROR: {
  1414. TreeItem *ti = error_tree->get_selected();
  1415. while (ti->get_parent() != error_tree->get_root()) {
  1416. ti = ti->get_parent();
  1417. }
  1418. String type;
  1419. if (ti->has_meta("_is_warning")) {
  1420. type = "W ";
  1421. } else if (ti->has_meta("_is_error")) {
  1422. type = "E ";
  1423. }
  1424. String text = ti->get_text(0) + " ";
  1425. int rpad_len = text.length();
  1426. text = type + text + ti->get_text(1) + "\n";
  1427. TreeItem *ci = ti->get_first_child();
  1428. while (ci) {
  1429. text += " " + ci->get_text(0).rpad(rpad_len) + ci->get_text(1) + "\n";
  1430. ci = ci->get_next();
  1431. }
  1432. DisplayServer::get_singleton()->clipboard_set(text);
  1433. } break;
  1434. case ACTION_OPEN_SOURCE: {
  1435. TreeItem *ti = error_tree->get_selected();
  1436. while (ti->get_parent() != error_tree->get_root()) {
  1437. ti = ti->get_parent();
  1438. }
  1439. // Find the child with the "C++ Source".
  1440. // It's not at a fixed position as "C++ Error" may come first.
  1441. TreeItem *ci = ti->get_first_child();
  1442. const String cpp_source = "<" + TTR("C++ Source") + ">";
  1443. while (ci) {
  1444. if (ci->get_text(0) == cpp_source) {
  1445. break;
  1446. }
  1447. ci = ci->get_next();
  1448. }
  1449. if (!ci) {
  1450. WARN_PRINT_ED("No C++ source reference is available for this error.");
  1451. return;
  1452. }
  1453. // Parse back the `file:line @ method()` string.
  1454. const Vector<String> file_line_number = ci->get_text(1).split("@")[0].strip_edges().split(":");
  1455. ERR_FAIL_COND_MSG(file_line_number.size() < 2, "Incorrect C++ source stack trace file:line format (please report).");
  1456. const String &file = file_line_number[0];
  1457. const int line_number = file_line_number[1].to_int();
  1458. // Construct a GitHub repository URL and open it in the user's default web browser.
  1459. // If the commit hash is available, use it for greater accuracy. Otherwise fall back to tagged release.
  1460. String git_ref = String(VERSION_HASH).is_empty() ? String(VERSION_NUMBER) + "-stable" : String(VERSION_HASH);
  1461. OS::get_singleton()->shell_open(vformat("https://github.com/godotengine/godot/blob/%s/%s#L%d",
  1462. git_ref, file, line_number));
  1463. } break;
  1464. case ACTION_DELETE_BREAKPOINT: {
  1465. const TreeItem *selected = breakpoints_tree->get_selected();
  1466. _set_breakpoint(selected->get_parent()->get_text(0), selected->get_meta("line"), false);
  1467. } break;
  1468. case ACTION_DELETE_BREAKPOINTS_IN_FILE: {
  1469. TreeItem *file_item = breakpoints_tree->get_selected();
  1470. if (file_item->has_meta("line")) {
  1471. file_item = file_item->get_parent();
  1472. }
  1473. // Store first else we will be removing as we loop.
  1474. List<int> lines;
  1475. for (TreeItem *breakpoint_item = file_item->get_first_child(); breakpoint_item; breakpoint_item = breakpoint_item->get_next()) {
  1476. lines.push_back(breakpoint_item->get_meta("line"));
  1477. }
  1478. for (const int &line : lines) {
  1479. _set_breakpoint(file_item->get_text(0), line, false);
  1480. }
  1481. } break;
  1482. case ACTION_DELETE_ALL_BREAKPOINTS: {
  1483. _clear_breakpoints();
  1484. } break;
  1485. }
  1486. }
  1487. void ScriptEditorDebugger::_tab_changed(int p_tab) {
  1488. if (tabs->get_tab_title(p_tab) == TTR("Video RAM")) {
  1489. // "Video RAM" tab was clicked, refresh the data it's displaying when entering the tab.
  1490. _video_mem_request();
  1491. }
  1492. }
  1493. void ScriptEditorDebugger::_bind_methods() {
  1494. ClassDB::bind_method(D_METHOD("live_debug_create_node"), &ScriptEditorDebugger::live_debug_create_node);
  1495. ClassDB::bind_method(D_METHOD("live_debug_instantiate_node"), &ScriptEditorDebugger::live_debug_instantiate_node);
  1496. ClassDB::bind_method(D_METHOD("live_debug_remove_node"), &ScriptEditorDebugger::live_debug_remove_node);
  1497. ClassDB::bind_method(D_METHOD("live_debug_remove_and_keep_node"), &ScriptEditorDebugger::live_debug_remove_and_keep_node);
  1498. ClassDB::bind_method(D_METHOD("live_debug_restore_node"), &ScriptEditorDebugger::live_debug_restore_node);
  1499. ClassDB::bind_method(D_METHOD("live_debug_duplicate_node"), &ScriptEditorDebugger::live_debug_duplicate_node);
  1500. ClassDB::bind_method(D_METHOD("live_debug_reparent_node"), &ScriptEditorDebugger::live_debug_reparent_node);
  1501. ClassDB::bind_method(D_METHOD("request_remote_object", "id"), &ScriptEditorDebugger::request_remote_object);
  1502. ClassDB::bind_method(D_METHOD("update_remote_object", "id", "property", "value"), &ScriptEditorDebugger::update_remote_object);
  1503. ADD_SIGNAL(MethodInfo("started"));
  1504. ADD_SIGNAL(MethodInfo("stopped"));
  1505. ADD_SIGNAL(MethodInfo("stop_requested"));
  1506. ADD_SIGNAL(MethodInfo("stack_frame_selected", PropertyInfo(Variant::INT, "frame")));
  1507. ADD_SIGNAL(MethodInfo("error_selected", PropertyInfo(Variant::INT, "error")));
  1508. ADD_SIGNAL(MethodInfo("breakpoint_selected", PropertyInfo("script"), PropertyInfo(Variant::INT, "line")));
  1509. ADD_SIGNAL(MethodInfo("set_execution", PropertyInfo("script"), PropertyInfo(Variant::INT, "line")));
  1510. ADD_SIGNAL(MethodInfo("clear_execution", PropertyInfo("script")));
  1511. ADD_SIGNAL(MethodInfo("breaked", PropertyInfo(Variant::BOOL, "reallydid"), PropertyInfo(Variant::BOOL, "can_debug"), PropertyInfo(Variant::STRING, "reason"), PropertyInfo(Variant::BOOL, "has_stackdump")));
  1512. ADD_SIGNAL(MethodInfo("remote_object_requested", PropertyInfo(Variant::INT, "id")));
  1513. ADD_SIGNAL(MethodInfo("remote_object_updated", PropertyInfo(Variant::INT, "id")));
  1514. ADD_SIGNAL(MethodInfo("remote_object_property_updated", PropertyInfo(Variant::INT, "id"), PropertyInfo(Variant::STRING, "property")));
  1515. ADD_SIGNAL(MethodInfo("remote_tree_updated"));
  1516. ADD_SIGNAL(MethodInfo("remote_tree_select_requested", PropertyInfo(Variant::NODE_PATH, "path")));
  1517. ADD_SIGNAL(MethodInfo("output", PropertyInfo(Variant::STRING, "msg"), PropertyInfo(Variant::INT, "level")));
  1518. ADD_SIGNAL(MethodInfo("stack_dump", PropertyInfo(Variant::ARRAY, "stack_dump")));
  1519. ADD_SIGNAL(MethodInfo("stack_frame_vars", PropertyInfo(Variant::INT, "num_vars")));
  1520. ADD_SIGNAL(MethodInfo("stack_frame_var", PropertyInfo(Variant::ARRAY, "data")));
  1521. ADD_SIGNAL(MethodInfo("debug_data", PropertyInfo(Variant::STRING, "msg"), PropertyInfo(Variant::ARRAY, "data")));
  1522. ADD_SIGNAL(MethodInfo("set_breakpoint", PropertyInfo("script"), PropertyInfo(Variant::INT, "line"), PropertyInfo(Variant::BOOL, "enabled")));
  1523. ADD_SIGNAL(MethodInfo("clear_breakpoints"));
  1524. ADD_SIGNAL(MethodInfo("errors_cleared"));
  1525. }
  1526. void ScriptEditorDebugger::add_debugger_tab(Control *p_control) {
  1527. tabs->add_child(p_control);
  1528. }
  1529. void ScriptEditorDebugger::remove_debugger_tab(Control *p_control) {
  1530. int idx = tabs->get_tab_idx_from_control(p_control);
  1531. ERR_FAIL_COND(idx < 0);
  1532. p_control->queue_free();
  1533. }
  1534. int ScriptEditorDebugger::get_current_debugger_tab() const {
  1535. return tabs->get_current_tab();
  1536. }
  1537. void ScriptEditorDebugger::switch_to_debugger(int p_debugger_tab_idx) {
  1538. tabs->set_current_tab(p_debugger_tab_idx);
  1539. }
  1540. void ScriptEditorDebugger::send_message(const String &p_message, const Array &p_args) {
  1541. _put_msg(p_message, p_args);
  1542. }
  1543. void ScriptEditorDebugger::toggle_profiler(const String &p_profiler, bool p_enable, const Array &p_data) {
  1544. Array msg_data;
  1545. msg_data.push_back(p_enable);
  1546. msg_data.append_array(p_data);
  1547. _put_msg("profiler:" + p_profiler, msg_data);
  1548. }
  1549. ScriptEditorDebugger::ScriptEditorDebugger() {
  1550. tabs = memnew(TabContainer);
  1551. add_child(tabs);
  1552. tabs->connect("tab_changed", callable_mp(this, &ScriptEditorDebugger::_tab_changed));
  1553. InspectorDock::get_inspector_singleton()->connect("object_id_selected", callable_mp(this, &ScriptEditorDebugger::_remote_object_selected));
  1554. EditorFileSystem::get_singleton()->connect("resources_reimported", callable_mp(this, &ScriptEditorDebugger::_resources_reimported));
  1555. { //debugger
  1556. VBoxContainer *vbc = memnew(VBoxContainer);
  1557. vbc->set_name(TTR("Stack Trace"));
  1558. Control *dbg = vbc;
  1559. HBoxContainer *hbc = memnew(HBoxContainer);
  1560. vbc->add_child(hbc);
  1561. reason = memnew(Label);
  1562. reason->set_text("");
  1563. hbc->add_child(reason);
  1564. reason->set_h_size_flags(SIZE_EXPAND_FILL);
  1565. reason->set_autowrap_mode(TextServer::AUTOWRAP_WORD_SMART);
  1566. reason->set_max_lines_visible(3);
  1567. reason->set_mouse_filter(Control::MOUSE_FILTER_PASS);
  1568. hbc->add_child(memnew(VSeparator));
  1569. skip_breakpoints = memnew(Button);
  1570. skip_breakpoints->set_theme_type_variation("FlatButton");
  1571. hbc->add_child(skip_breakpoints);
  1572. skip_breakpoints->set_tooltip_text(TTR("Skip Breakpoints"));
  1573. skip_breakpoints->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::debug_skip_breakpoints));
  1574. hbc->add_child(memnew(VSeparator));
  1575. copy = memnew(Button);
  1576. copy->set_theme_type_variation("FlatButton");
  1577. hbc->add_child(copy);
  1578. copy->set_tooltip_text(TTR("Copy Error"));
  1579. copy->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::debug_copy));
  1580. hbc->add_child(memnew(VSeparator));
  1581. step = memnew(Button);
  1582. step->set_theme_type_variation("FlatButton");
  1583. hbc->add_child(step);
  1584. step->set_tooltip_text(TTR("Step Into"));
  1585. step->set_shortcut(ED_GET_SHORTCUT("debugger/step_into"));
  1586. step->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::debug_step));
  1587. next = memnew(Button);
  1588. next->set_theme_type_variation("FlatButton");
  1589. hbc->add_child(next);
  1590. next->set_tooltip_text(TTR("Step Over"));
  1591. next->set_shortcut(ED_GET_SHORTCUT("debugger/step_over"));
  1592. next->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::debug_next));
  1593. hbc->add_child(memnew(VSeparator));
  1594. dobreak = memnew(Button);
  1595. dobreak->set_theme_type_variation("FlatButton");
  1596. hbc->add_child(dobreak);
  1597. dobreak->set_tooltip_text(TTR("Break"));
  1598. dobreak->set_shortcut(ED_GET_SHORTCUT("debugger/break"));
  1599. dobreak->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::debug_break));
  1600. docontinue = memnew(Button);
  1601. docontinue->set_theme_type_variation("FlatButton");
  1602. hbc->add_child(docontinue);
  1603. docontinue->set_tooltip_text(TTR("Continue"));
  1604. docontinue->set_shortcut(ED_GET_SHORTCUT("debugger/continue"));
  1605. docontinue->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::debug_continue));
  1606. HSplitContainer *parent_sc = memnew(HSplitContainer);
  1607. vbc->add_child(parent_sc);
  1608. parent_sc->set_v_size_flags(SIZE_EXPAND_FILL);
  1609. parent_sc->set_split_offset(500 * EDSCALE);
  1610. HSplitContainer *sc = memnew(HSplitContainer);
  1611. sc->set_v_size_flags(SIZE_EXPAND_FILL);
  1612. sc->set_h_size_flags(SIZE_EXPAND_FILL);
  1613. parent_sc->add_child(sc);
  1614. VBoxContainer *stack_vb = memnew(VBoxContainer);
  1615. stack_vb->set_h_size_flags(SIZE_EXPAND_FILL);
  1616. sc->add_child(stack_vb);
  1617. HBoxContainer *thread_hb = memnew(HBoxContainer);
  1618. stack_vb->add_child(thread_hb);
  1619. thread_hb->add_child(memnew(Label(TTR("Thread:"))));
  1620. threads = memnew(OptionButton);
  1621. thread_hb->add_child(threads);
  1622. threads->set_h_size_flags(SIZE_EXPAND_FILL);
  1623. threads->connect(SceneStringName(item_selected), callable_mp(this, &ScriptEditorDebugger::_select_thread));
  1624. stack_dump = memnew(Tree);
  1625. stack_dump->set_allow_reselect(true);
  1626. stack_dump->set_columns(1);
  1627. stack_dump->set_column_titles_visible(true);
  1628. stack_dump->set_column_title(0, TTR("Stack Frames"));
  1629. stack_dump->set_hide_root(true);
  1630. stack_dump->set_v_size_flags(SIZE_EXPAND_FILL);
  1631. stack_dump->connect("cell_selected", callable_mp(this, &ScriptEditorDebugger::_stack_dump_frame_selected));
  1632. stack_vb->add_child(stack_dump);
  1633. VBoxContainer *inspector_vbox = memnew(VBoxContainer);
  1634. inspector_vbox->set_h_size_flags(SIZE_EXPAND_FILL);
  1635. sc->add_child(inspector_vbox);
  1636. HBoxContainer *tools_hb = memnew(HBoxContainer);
  1637. inspector_vbox->add_child(tools_hb);
  1638. search = memnew(LineEdit);
  1639. search->set_h_size_flags(Control::SIZE_EXPAND_FILL);
  1640. search->set_placeholder(TTR("Filter Stack Variables"));
  1641. search->set_clear_button_enabled(true);
  1642. tools_hb->add_child(search);
  1643. inspector = memnew(EditorDebuggerInspector);
  1644. inspector->set_h_size_flags(SIZE_EXPAND_FILL);
  1645. inspector->set_v_size_flags(SIZE_EXPAND_FILL);
  1646. inspector->set_property_name_style(EditorPropertyNameProcessor::STYLE_RAW);
  1647. inspector->set_read_only(true);
  1648. inspector->connect("object_selected", callable_mp(this, &ScriptEditorDebugger::_remote_object_selected));
  1649. inspector->connect("object_edited", callable_mp(this, &ScriptEditorDebugger::_remote_object_edited));
  1650. inspector->connect("object_property_updated", callable_mp(this, &ScriptEditorDebugger::_remote_object_property_updated));
  1651. inspector->register_text_enter(search);
  1652. inspector->set_use_filter(true);
  1653. inspector_vbox->add_child(inspector);
  1654. breakpoints_tree = memnew(Tree);
  1655. breakpoints_tree->set_h_size_flags(SIZE_EXPAND_FILL);
  1656. breakpoints_tree->set_column_titles_visible(true);
  1657. breakpoints_tree->set_column_title(0, TTR("Breakpoints"));
  1658. breakpoints_tree->set_allow_reselect(true);
  1659. breakpoints_tree->set_allow_rmb_select(true);
  1660. breakpoints_tree->set_hide_root(true);
  1661. breakpoints_tree->connect("item_mouse_selected", callable_mp(this, &ScriptEditorDebugger::_breakpoints_item_rmb_selected));
  1662. breakpoints_tree->create_item();
  1663. parent_sc->add_child(breakpoints_tree);
  1664. tabs->add_child(dbg);
  1665. breakpoints_menu = memnew(PopupMenu);
  1666. breakpoints_menu->connect(SceneStringName(id_pressed), callable_mp(this, &ScriptEditorDebugger::_item_menu_id_pressed));
  1667. breakpoints_tree->add_child(breakpoints_menu);
  1668. }
  1669. { //errors
  1670. errors_tab = memnew(VBoxContainer);
  1671. errors_tab->set_name(TTR("Errors"));
  1672. HBoxContainer *error_hbox = memnew(HBoxContainer);
  1673. errors_tab->add_child(error_hbox);
  1674. expand_all_button = memnew(Button);
  1675. expand_all_button->set_text(TTR("Expand All"));
  1676. expand_all_button->set_disabled(true);
  1677. expand_all_button->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::_expand_errors_list));
  1678. error_hbox->add_child(expand_all_button);
  1679. collapse_all_button = memnew(Button);
  1680. collapse_all_button->set_text(TTR("Collapse All"));
  1681. collapse_all_button->set_disabled(true);
  1682. collapse_all_button->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::_collapse_errors_list));
  1683. error_hbox->add_child(collapse_all_button);
  1684. Control *space = memnew(Control);
  1685. space->set_h_size_flags(SIZE_EXPAND_FILL);
  1686. error_hbox->add_child(space);
  1687. clear_button = memnew(Button);
  1688. clear_button->set_text(TTR("Clear"));
  1689. clear_button->set_h_size_flags(0);
  1690. clear_button->set_disabled(true);
  1691. clear_button->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::_clear_errors_list));
  1692. error_hbox->add_child(clear_button);
  1693. error_tree = memnew(Tree);
  1694. error_tree->set_columns(2);
  1695. error_tree->set_column_expand(0, false);
  1696. error_tree->set_column_custom_minimum_width(0, 140);
  1697. error_tree->set_column_clip_content(0, true);
  1698. error_tree->set_column_expand(1, true);
  1699. error_tree->set_column_clip_content(1, true);
  1700. error_tree->set_select_mode(Tree::SELECT_ROW);
  1701. error_tree->set_hide_root(true);
  1702. error_tree->set_v_size_flags(SIZE_EXPAND_FILL);
  1703. error_tree->set_allow_rmb_select(true);
  1704. error_tree->set_allow_reselect(true);
  1705. error_tree->connect("item_mouse_selected", callable_mp(this, &ScriptEditorDebugger::_error_tree_item_rmb_selected));
  1706. errors_tab->add_child(error_tree);
  1707. item_menu = memnew(PopupMenu);
  1708. item_menu->connect(SceneStringName(id_pressed), callable_mp(this, &ScriptEditorDebugger::_item_menu_id_pressed));
  1709. error_tree->add_child(item_menu);
  1710. tabs->add_child(errors_tab);
  1711. }
  1712. { // File dialog
  1713. file_dialog = memnew(EditorFileDialog);
  1714. file_dialog->connect("file_selected", callable_mp(this, &ScriptEditorDebugger::_file_selected));
  1715. add_child(file_dialog);
  1716. }
  1717. { // Expression evaluator
  1718. expression_evaluator = memnew(EditorExpressionEvaluator);
  1719. expression_evaluator->set_name(TTR("Evaluator"));
  1720. expression_evaluator->set_editor_debugger(this);
  1721. tabs->add_child(expression_evaluator);
  1722. }
  1723. { //profiler
  1724. profiler = memnew(EditorProfiler);
  1725. profiler->set_name(TTR("Profiler"));
  1726. tabs->add_child(profiler);
  1727. profiler->connect("enable_profiling", callable_mp(this, &ScriptEditorDebugger::_profiler_activate).bind(PROFILER_SCRIPTS_SERVERS));
  1728. profiler->connect("break_request", callable_mp(this, &ScriptEditorDebugger::_profiler_seeked));
  1729. }
  1730. { //frame profiler
  1731. visual_profiler = memnew(EditorVisualProfiler);
  1732. visual_profiler->set_name(TTR("Visual Profiler"));
  1733. tabs->add_child(visual_profiler);
  1734. visual_profiler->connect("enable_profiling", callable_mp(this, &ScriptEditorDebugger::_profiler_activate).bind(PROFILER_VISUAL));
  1735. }
  1736. { //monitors
  1737. performance_profiler = memnew(EditorPerformanceProfiler);
  1738. tabs->add_child(performance_profiler);
  1739. }
  1740. { //vmem inspect
  1741. VBoxContainer *vmem_vb = memnew(VBoxContainer);
  1742. HBoxContainer *vmem_hb = memnew(HBoxContainer);
  1743. Label *vmlb = memnew(Label(TTR("List of Video Memory Usage by Resource:") + " "));
  1744. vmlb->set_theme_type_variation("HeaderSmall");
  1745. vmlb->set_h_size_flags(SIZE_EXPAND_FILL);
  1746. vmem_hb->add_child(vmlb);
  1747. vmem_hb->add_child(memnew(Label(TTR("Total:") + " ")));
  1748. vmem_total = memnew(LineEdit);
  1749. vmem_total->set_editable(false);
  1750. vmem_total->set_custom_minimum_size(Size2(100, 0) * EDSCALE);
  1751. vmem_hb->add_child(vmem_total);
  1752. vmem_refresh = memnew(Button);
  1753. vmem_refresh->set_theme_type_variation("FlatButton");
  1754. vmem_hb->add_child(vmem_refresh);
  1755. vmem_export = memnew(Button);
  1756. vmem_export->set_theme_type_variation("FlatButton");
  1757. vmem_export->set_tooltip_text(TTR("Export list to a CSV file"));
  1758. vmem_hb->add_child(vmem_export);
  1759. vmem_vb->add_child(vmem_hb);
  1760. vmem_refresh->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::_video_mem_request));
  1761. vmem_export->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::_video_mem_export));
  1762. VBoxContainer *vmmc = memnew(VBoxContainer);
  1763. vmem_tree = memnew(Tree);
  1764. vmem_tree->set_v_size_flags(SIZE_EXPAND_FILL);
  1765. vmem_tree->set_h_size_flags(SIZE_EXPAND_FILL);
  1766. vmmc->add_child(vmem_tree);
  1767. vmmc->set_v_size_flags(SIZE_EXPAND_FILL);
  1768. vmem_vb->add_child(vmmc);
  1769. vmem_vb->set_name(TTR("Video RAM"));
  1770. vmem_tree->set_columns(4);
  1771. vmem_tree->set_column_titles_visible(true);
  1772. vmem_tree->set_column_title(0, TTR("Resource Path"));
  1773. vmem_tree->set_column_expand(0, true);
  1774. vmem_tree->set_column_expand(1, false);
  1775. vmem_tree->set_column_title(1, TTR("Type"));
  1776. vmem_tree->set_column_custom_minimum_width(1, 100 * EDSCALE);
  1777. vmem_tree->set_column_expand(2, false);
  1778. vmem_tree->set_column_title(2, TTR("Format"));
  1779. vmem_tree->set_column_custom_minimum_width(2, 150 * EDSCALE);
  1780. vmem_tree->set_column_expand(3, false);
  1781. vmem_tree->set_column_title(3, TTR("Usage"));
  1782. vmem_tree->set_column_custom_minimum_width(3, 80 * EDSCALE);
  1783. vmem_tree->set_hide_root(true);
  1784. tabs->add_child(vmem_vb);
  1785. }
  1786. { // misc
  1787. VBoxContainer *misc = memnew(VBoxContainer);
  1788. misc->set_name(TTR("Misc"));
  1789. tabs->add_child(misc);
  1790. GridContainer *info_left = memnew(GridContainer);
  1791. info_left->set_columns(2);
  1792. misc->add_child(info_left);
  1793. clicked_ctrl = memnew(LineEdit);
  1794. clicked_ctrl->set_editable(false);
  1795. clicked_ctrl->set_h_size_flags(SIZE_EXPAND_FILL);
  1796. info_left->add_child(memnew(Label(TTR("Clicked Control:"))));
  1797. info_left->add_child(clicked_ctrl);
  1798. clicked_ctrl_type = memnew(LineEdit);
  1799. clicked_ctrl_type->set_editable(false);
  1800. info_left->add_child(memnew(Label(TTR("Clicked Control Type:"))));
  1801. info_left->add_child(clicked_ctrl_type);
  1802. scene_tree = memnew(SceneDebuggerTree);
  1803. live_edit_root = memnew(LineEdit);
  1804. live_edit_root->set_editable(false);
  1805. live_edit_root->set_h_size_flags(SIZE_EXPAND_FILL);
  1806. {
  1807. HBoxContainer *lehb = memnew(HBoxContainer);
  1808. Label *l = memnew(Label(TTR("Live Edit Root:")));
  1809. info_left->add_child(l);
  1810. lehb->add_child(live_edit_root);
  1811. le_set = memnew(Button(TTR("Set From Tree")));
  1812. lehb->add_child(le_set);
  1813. le_clear = memnew(Button(TTR("Clear")));
  1814. lehb->add_child(le_clear);
  1815. info_left->add_child(lehb);
  1816. }
  1817. misc->add_child(memnew(VSeparator));
  1818. HBoxContainer *buttons = memnew(HBoxContainer);
  1819. export_csv = memnew(Button(TTR("Export measures as CSV")));
  1820. export_csv->connect(SceneStringName(pressed), callable_mp(this, &ScriptEditorDebugger::_export_csv));
  1821. buttons->add_child(export_csv);
  1822. misc->add_child(buttons);
  1823. }
  1824. msgdialog = memnew(AcceptDialog);
  1825. add_child(msgdialog);
  1826. live_debug = true;
  1827. camera_override = CameraOverride::OVERRIDE_NONE;
  1828. last_path_id = false;
  1829. error_count = 0;
  1830. warning_count = 0;
  1831. _update_buttons_state();
  1832. }
  1833. ScriptEditorDebugger::~ScriptEditorDebugger() {
  1834. if (peer.is_valid()) {
  1835. peer->close();
  1836. peer.unref();
  1837. }
  1838. memdelete(scene_tree);
  1839. }