editor_run_bar.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /**************************************************************************/
  2. /* editor_run_bar.h */
  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. #pragma once
  31. #include "editor/editor_run.h"
  32. #include "editor/export/editor_export.h"
  33. #include "scene/gui/margin_container.h"
  34. class Button;
  35. class EditorRunNative;
  36. class PanelContainer;
  37. class HBoxContainer;
  38. class AcceptDialog;
  39. class EditorRunBar : public MarginContainer {
  40. GDCLASS(EditorRunBar, MarginContainer);
  41. static EditorRunBar *singleton;
  42. enum RunMode {
  43. STOPPED = 0,
  44. RUN_MAIN,
  45. RUN_CURRENT,
  46. RUN_CUSTOM,
  47. };
  48. PanelContainer *main_panel = nullptr;
  49. HBoxContainer *main_hbox = nullptr;
  50. HBoxContainer *outer_hbox = nullptr;
  51. Button *profiler_autostart_indicator = nullptr;
  52. PanelContainer *recovery_mode_panel = nullptr;
  53. Button *recovery_mode_button = nullptr;
  54. Button *recovery_mode_reload_button = nullptr;
  55. AcceptDialog *recovery_mode_popup = nullptr;
  56. Button *play_button = nullptr;
  57. Button *pause_button = nullptr;
  58. Button *stop_button = nullptr;
  59. Button *play_scene_button = nullptr;
  60. Button *play_custom_scene_button = nullptr;
  61. EditorRun editor_run;
  62. EditorRunNative *run_native = nullptr;
  63. PanelContainer *write_movie_panel = nullptr;
  64. Button *write_movie_button = nullptr;
  65. RunMode current_mode = RunMode::STOPPED;
  66. String run_custom_filename;
  67. String run_current_filename;
  68. void _reset_play_buttons();
  69. void _update_play_buttons();
  70. void _write_movie_toggled(bool p_enabled);
  71. void _quick_run_selected(const String &p_file_path, int p_id = -1);
  72. void _play_current_pressed(int p_id = -1);
  73. void _play_custom_pressed(int p_id = -1);
  74. void _run_scene(const String &p_scene_path = "", const Vector<String> &p_run_args = Vector<String>());
  75. void _run_native(const Ref<EditorExportPreset> &p_preset);
  76. void _profiler_autostart_indicator_pressed();
  77. private:
  78. static Vector<String> _get_xr_mode_play_args(int p_xr_mode_id);
  79. protected:
  80. void _notification(int p_what);
  81. static void _bind_methods();
  82. public:
  83. static EditorRunBar *get_singleton() { return singleton; }
  84. void recovery_mode_show_dialog();
  85. void recovery_mode_reload_project();
  86. void play_main_scene(bool p_from_native = false);
  87. void play_current_scene(bool p_reload = false, const Vector<String> &p_play_args = Vector<String>());
  88. void play_custom_scene(const String &p_custom, const Vector<String> &p_play_args = Vector<String>());
  89. void stop_playing();
  90. bool is_playing() const;
  91. String get_playing_scene() const;
  92. Error start_native_device(int p_device_id);
  93. OS::ProcessID has_child_process(OS::ProcessID p_pid) const;
  94. void stop_child_process(OS::ProcessID p_pid);
  95. OS::ProcessID get_current_process() const;
  96. void set_movie_maker_enabled(bool p_enabled);
  97. bool is_movie_maker_enabled() const;
  98. void update_profiler_autostart_indicator();
  99. Button *get_pause_button() { return pause_button; }
  100. HBoxContainer *get_buttons_container();
  101. EditorRunBar();
  102. };