editor_run_native.cpp 8.2 KB

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