2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* editor_run_native.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
2017-08-27 14:16:55 +02:00
/* https://godotengine.org */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
2021-01-01 20:13:46 +01:00
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
2014-02-10 02:10:30 +01:00
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
2018-01-05 00:50:27 +01:00
2014-02-10 02:10:30 +01:00
# include "editor_run_native.h"
2017-02-20 03:19:30 +01:00
# include "editor_export.h"
2017-03-24 00:14:12 +01:00
# include "editor_node.h"
2019-02-26 16:26:24 +01:00
# include "editor_scale.h"
2014-02-10 02:10:30 +01:00
void EditorRunNative : : _notification ( int p_what ) {
2017-03-24 00:14:12 +01:00
if ( p_what = = NOTIFICATION_ENTER_TREE ) {
for ( int i = 0 ; i < EditorExport : : get_singleton ( ) - > get_export_platform_count ( ) ; i + + ) {
Ref < EditorExportPlatform > eep = EditorExport : : get_singleton ( ) - > get_export_platform ( i ) ;
2020-05-14 16:41:43 +02:00
if ( eep . is_null ( ) ) {
2014-02-10 02:10:30 +01:00
continue ;
2020-05-14 16:41:43 +02:00
}
2017-05-25 20:57:13 +02:00
Ref < ImageTexture > icon = eep - > get_run_icon ( ) ;
2014-02-10 02:10:30 +01:00
if ( ! icon . is_null ( ) ) {
2021-03-28 13:32:17 +02:00
Ref < Image > im = icon - > get_image ( ) ;
2017-05-17 12:36:47 +02:00
im = im - > duplicate ( ) ;
im - > clear_mipmaps ( ) ;
2020-12-15 13:04:21 +01:00
if ( ! im - > is_empty ( ) ) {
2019-02-26 16:26:24 +01:00
im - > resize ( 16 * EDSCALE , 16 * EDSCALE ) ;
2017-03-24 00:14:12 +01:00
Ref < ImageTexture > small_icon ;
small_icon . instance ( ) ;
2019-06-11 20:43:37 +02:00
small_icon - > create_from_image ( im ) ;
2017-03-24 00:14:12 +01:00
MenuButton * mb = memnew ( MenuButton ) ;
2020-02-21 18:28:45 +01:00
mb - > get_popup ( ) - > connect ( " id_pressed " , callable_mp ( this , & EditorRunNative : : _run_native ) , varray ( i ) ) ;
mb - > connect ( " pressed " , callable_mp ( this , & EditorRunNative : : _run_native ) , varray ( - 1 , i ) ) ;
2014-02-10 02:10:30 +01:00
mb - > set_icon ( small_icon ) ;
add_child ( mb ) ;
2017-03-24 00:14:12 +01:00
menus [ i ] = mb ;
2014-02-10 02:10:30 +01:00
}
}
}
}
2017-03-24 00:14:12 +01:00
if ( p_what = = NOTIFICATION_PROCESS ) {
bool changed = EditorExport : : get_singleton ( ) - > poll_export_platforms ( ) | | first ;
2014-02-10 02:10:30 +01:00
if ( changed ) {
2017-03-24 00:14:12 +01:00
for ( Map < int , MenuButton * > : : Element * E = menus . front ( ) ; E ; E = E - > next ( ) ) {
Ref < EditorExportPlatform > eep = EditorExport : : get_singleton ( ) - > get_export_platform ( E - > key ( ) ) ;
2014-02-10 02:10:30 +01:00
MenuButton * mb = E - > get ( ) ;
2019-10-11 13:47:28 +02:00
int dc = eep - > get_options_count ( ) ;
2014-02-10 02:10:30 +01:00
2017-03-24 00:14:12 +01:00
if ( dc = = 0 ) {
2014-02-10 02:10:30 +01:00
mb - > hide ( ) ;
} else {
mb - > get_popup ( ) - > clear ( ) ;
mb - > show ( ) ;
2020-10-12 14:47:00 +02:00
if ( dc = = 1 ) {
mb - > set_tooltip ( eep - > get_option_tooltip ( 0 ) ) ;
} else {
mb - > set_tooltip ( eep - > get_options_tooltip ( ) ) ;
2019-04-20 17:01:16 +02:00
for ( int i = 0 ; i < dc ; i + + ) {
2019-10-11 13:47:28 +02:00
mb - > get_popup ( ) - > add_icon_item ( eep - > get_option_icon ( i ) , eep - > get_option_label ( i ) ) ;
mb - > get_popup ( ) - > set_item_tooltip ( mb - > get_popup ( ) - > get_item_count ( ) - 1 , eep - > get_option_tooltip ( i ) ) ;
2019-04-20 17:01:16 +02:00
}
2014-02-10 02:10:30 +01:00
}
}
}
2017-03-24 00:14:12 +01:00
first = false ;
2014-02-10 02:10:30 +01:00
}
}
}
2017-03-24 00:14:12 +01:00
void EditorRunNative : : _run_native ( int p_idx , int p_platform ) {
2019-03-22 02:08:28 +01:00
if ( ! EditorNode : : get_singleton ( ) - > ensure_main_scene ( true ) ) {
resume_idx = p_idx ;
resume_platform = p_platform ;
return ;
}
2017-03-24 00:14:12 +01:00
Ref < EditorExportPlatform > eep = EditorExport : : get_singleton ( ) - > get_export_platform ( p_platform ) ;
2014-02-10 02:10:30 +01:00
ERR_FAIL_COND ( eep . is_null ( ) ) ;
2019-04-20 17:01:16 +02:00
if ( p_idx = = - 1 ) {
2019-10-11 13:47:28 +02:00
if ( eep - > get_options_count ( ) = = 1 ) {
2016-11-08 20:08:07 +01:00
menus [ p_platform ] - > get_popup ( ) - > hide ( ) ;
p_idx = 0 ;
} else {
return ;
}
2019-04-20 17:01:16 +02:00
}
2017-03-24 00:14:12 +01:00
Ref < EditorExportPreset > preset ;
for ( int i = 0 ; i < EditorExport : : get_singleton ( ) - > get_export_preset_count ( ) ; i + + ) {
Ref < EditorExportPreset > ep = EditorExport : : get_singleton ( ) - > get_export_preset ( i ) ;
if ( ep - > is_runnable ( ) & & ep - > get_platform ( ) = = eep ) {
preset = ep ;
break ;
}
}
if ( preset . is_null ( ) ) {
2020-08-03 14:14:59 +02:00
EditorNode : : get_singleton ( ) - > show_warning ( TTR ( " No runnable export preset found for this platform. \n Please add a runnable preset in the Export menu or define an existing preset as runnable. " ) ) ;
2017-03-24 00:14:12 +01:00
return ;
2016-11-08 20:08:07 +01:00
}
2017-03-24 00:14:12 +01:00
2020-03-16 09:37:43 +01:00
emit_signal ( " native_run " , preset ) ;
2015-08-06 07:37:40 +02:00
2017-03-24 00:14:12 +01:00
int flags = 0 ;
2020-03-08 18:58:31 +01:00
bool deploy_debug_remote = is_deploy_debug_remote_enabled ( ) ;
bool deploy_dumb = EditorSettings : : get_singleton ( ) - > get_project_metadata ( " debug_options " , " run_file_server " , false ) ;
bool debug_collisions = EditorSettings : : get_singleton ( ) - > get_project_metadata ( " debug_options " , " run_debug_collisons " , false ) ;
bool debug_navigation = EditorSettings : : get_singleton ( ) - > get_project_metadata ( " debug_options " , " run_debug_navigation " , false ) ;
2020-05-14 16:41:43 +02:00
if ( deploy_debug_remote ) {
2017-03-24 00:14:12 +01:00
flags | = EditorExportPlatform : : DEBUG_FLAG_REMOTE_DEBUG ;
2020-05-14 16:41:43 +02:00
}
if ( deploy_dumb ) {
2017-03-24 00:14:12 +01:00
flags | = EditorExportPlatform : : DEBUG_FLAG_DUMB_CLIENT ;
2020-05-14 16:41:43 +02:00
}
if ( debug_collisions ) {
2017-03-24 00:14:12 +01:00
flags | = EditorExportPlatform : : DEBUG_FLAG_VIEW_COLLISONS ;
2020-05-14 16:41:43 +02:00
}
if ( debug_navigation ) {
2017-03-24 00:14:12 +01:00
flags | = EditorExportPlatform : : DEBUG_FLAG_VIEW_NAVIGATION ;
2020-05-14 16:41:43 +02:00
}
2017-01-26 01:55:59 +01:00
2017-03-24 00:14:12 +01:00
eep - > run ( preset , p_idx , flags ) ;
2014-02-10 02:10:30 +01:00
}
2019-03-22 02:08:28 +01:00
void EditorRunNative : : resume_run_native ( ) {
_run_native ( resume_idx , resume_platform ) ;
}
2014-02-10 02:10:30 +01:00
void EditorRunNative : : _bind_methods ( ) {
2020-03-16 09:37:43 +01:00
ADD_SIGNAL ( MethodInfo ( " native_run " , PropertyInfo ( Variant : : OBJECT , " preset " , PROPERTY_HINT_RESOURCE_TYPE , " EditorExportPreset " ) ) ) ;
2014-02-10 02:10:30 +01:00
}
2017-03-05 16:44:50 +01:00
bool EditorRunNative : : is_deploy_debug_remote_enabled ( ) const {
2020-03-08 18:58:31 +01:00
return EditorSettings : : get_singleton ( ) - > get_project_metadata ( " debug_options " , " run_deploy_remote_debug " , false ) ;
2015-09-20 18:03:46 +02:00
}
2014-05-29 15:56:39 +02:00
2017-03-05 16:44:50 +01:00
EditorRunNative : : EditorRunNative ( ) {
2014-02-10 02:10:30 +01:00
set_process ( true ) ;
2017-03-05 16:44:50 +01:00
first = true ;
2019-03-22 02:08:28 +01:00
resume_idx = 0 ;
resume_platform = 0 ;
2014-02-10 02:10:30 +01:00
}