editor_run_native.cpp 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /**************************************************************************/
  2. /* editor_run_native.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_run_native.h"
  31. #include "editor/editor_node.h"
  32. #include "editor/editor_settings.h"
  33. #include "editor/export/editor_export.h"
  34. #include "editor/export/editor_export_platform.h"
  35. #include "editor/themes/editor_scale.h"
  36. #include "scene/resources/image_texture.h"
  37. void EditorRunNative::_notification(int p_what) {
  38. switch (p_what) {
  39. case NOTIFICATION_THEME_CHANGED: {
  40. remote_debug->set_icon(get_editor_theme_icon(SNAME("PlayRemote")));
  41. } break;
  42. case NOTIFICATION_PROCESS: {
  43. bool changed = EditorExport::get_singleton()->poll_export_platforms() || first;
  44. if (changed) {
  45. PopupMenu *popup = remote_debug->get_popup();
  46. popup->clear();
  47. for (int i = 0; i < EditorExport::get_singleton()->get_export_platform_count(); i++) {
  48. Ref<EditorExportPlatform> eep = EditorExport::get_singleton()->get_export_platform(i);
  49. if (eep.is_null()) {
  50. continue;
  51. }
  52. int dc = MIN(eep->get_options_count(), 9000);
  53. if (dc > 0) {
  54. popup->add_icon_item(eep->get_run_icon(), eep->get_name(), -1);
  55. popup->set_item_disabled(-1, true);
  56. for (int j = 0; j < dc; j++) {
  57. popup->add_icon_item(eep->get_option_icon(j), eep->get_option_label(j), 10000 * i + j);
  58. popup->set_item_tooltip(-1, eep->get_option_tooltip(j));
  59. popup->set_item_indent(-1, 2);
  60. }
  61. }
  62. }
  63. if (popup->get_item_count() == 0) {
  64. remote_debug->set_disabled(true);
  65. remote_debug->set_tooltip_text(TTR("No Remote Debug export presets configured."));
  66. } else {
  67. remote_debug->set_disabled(false);
  68. remote_debug->set_tooltip_text(TTR("Remote Debug"));
  69. }
  70. first = false;
  71. }
  72. } break;
  73. }
  74. }
  75. void EditorRunNative::_confirm_run_native() {
  76. run_confirmed = true;
  77. resume_run_native();
  78. }
  79. Error EditorRunNative::start_run_native(int p_id) {
  80. if (p_id < 0) {
  81. return OK;
  82. }
  83. int platform = p_id / 10000;
  84. int idx = p_id % 10000;
  85. resume_id = p_id;
  86. if (!EditorNode::get_singleton()->ensure_main_scene(true)) {
  87. return OK;
  88. }
  89. Ref<EditorExportPlatform> eep = EditorExport::get_singleton()->get_export_platform(platform);
  90. ERR_FAIL_COND_V(eep.is_null(), ERR_UNAVAILABLE);
  91. Ref<EditorExportPreset> preset;
  92. for (int i = 0; i < EditorExport::get_singleton()->get_export_preset_count(); i++) {
  93. Ref<EditorExportPreset> ep = EditorExport::get_singleton()->get_export_preset(i);
  94. if (ep->is_runnable() && ep->get_platform() == eep) {
  95. preset = ep;
  96. break;
  97. }
  98. }
  99. if (preset.is_null()) {
  100. EditorNode::get_singleton()->show_warning(TTR("No runnable export preset found for this platform.\nPlease add a runnable preset in the Export menu or define an existing preset as runnable."));
  101. return ERR_UNAVAILABLE;
  102. }
  103. String architecture = eep->get_device_architecture(idx);
  104. if (!run_confirmed && !architecture.is_empty()) {
  105. String preset_arch = "architectures/" + architecture;
  106. bool is_arch_enabled = preset->get(preset_arch);
  107. if (!is_arch_enabled) {
  108. String warning_message = vformat(TTR("Warning: The CPU architecture '%s' is not active in your export preset.\n\n"), Variant(architecture));
  109. warning_message += TTR("Run 'Remote Debug' anyway?");
  110. run_native_confirm->set_text(warning_message);
  111. run_native_confirm->popup_centered();
  112. return OK;
  113. }
  114. }
  115. run_confirmed = false;
  116. emit_signal(SNAME("native_run"), preset);
  117. int flags = 0;
  118. bool deploy_debug_remote = is_deploy_debug_remote_enabled();
  119. bool deploy_dumb = EditorSettings::get_singleton()->get_project_metadata("debug_options", "run_file_server", false);
  120. bool debug_collisions = EditorSettings::get_singleton()->get_project_metadata("debug_options", "run_debug_collisions", false);
  121. bool debug_navigation = EditorSettings::get_singleton()->get_project_metadata("debug_options", "run_debug_navigation", false);
  122. if (deploy_debug_remote) {
  123. flags |= EditorExportPlatform::DEBUG_FLAG_REMOTE_DEBUG;
  124. }
  125. if (deploy_dumb) {
  126. flags |= EditorExportPlatform::DEBUG_FLAG_DUMB_CLIENT;
  127. }
  128. if (debug_collisions) {
  129. flags |= EditorExportPlatform::DEBUG_FLAG_VIEW_COLLISIONS;
  130. }
  131. if (debug_navigation) {
  132. flags |= EditorExportPlatform::DEBUG_FLAG_VIEW_NAVIGATION;
  133. }
  134. eep->clear_messages();
  135. Error err = eep->run(preset, idx, flags);
  136. result_dialog_log->clear();
  137. if (eep->fill_log_messages(result_dialog_log, err)) {
  138. if (eep->get_worst_message_type() >= EditorExportPlatform::EXPORT_MESSAGE_ERROR) {
  139. result_dialog->popup_centered_ratio(0.5);
  140. }
  141. }
  142. return err;
  143. }
  144. void EditorRunNative::resume_run_native() {
  145. start_run_native(resume_id);
  146. }
  147. void EditorRunNative::_bind_methods() {
  148. ADD_SIGNAL(MethodInfo("native_run", PropertyInfo(Variant::OBJECT, "preset", PROPERTY_HINT_RESOURCE_TYPE, "EditorExportPreset")));
  149. }
  150. bool EditorRunNative::is_deploy_debug_remote_enabled() const {
  151. return EditorSettings::get_singleton()->get_project_metadata("debug_options", "run_deploy_remote_debug", false);
  152. }
  153. EditorRunNative::EditorRunNative() {
  154. remote_debug = memnew(MenuButton);
  155. remote_debug->set_flat(false);
  156. remote_debug->set_theme_type_variation("RunBarButton");
  157. remote_debug->get_popup()->connect("id_pressed", callable_mp(this, &EditorRunNative::start_run_native));
  158. remote_debug->set_tooltip_text(TTR("Remote Debug"));
  159. remote_debug->set_disabled(true);
  160. add_child(remote_debug);
  161. result_dialog = memnew(AcceptDialog);
  162. result_dialog->set_title(TTR("Project Run"));
  163. result_dialog_log = memnew(RichTextLabel);
  164. result_dialog_log->set_custom_minimum_size(Size2(300, 80) * EDSCALE);
  165. result_dialog->add_child(result_dialog_log);
  166. add_child(result_dialog);
  167. result_dialog->hide();
  168. run_native_confirm = memnew(ConfirmationDialog);
  169. add_child(run_native_confirm);
  170. run_native_confirm->connect("confirmed", callable_mp(this, &EditorRunNative::_confirm_run_native));
  171. set_process(true);
  172. }