2023-01-05 13:25:55 +01:00
/**************************************************************************/
/* export_plugin.cpp */
/**************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
/* 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. */
/**************************************************************************/
2021-07-14 22:16:11 +02:00
# include "export_plugin.h"
2022-02-12 02:46:22 +01:00
# include "core/config/project_settings.h"
2022-11-20 12:16:16 +01:00
# include "core/io/image_loader.h"
2022-02-12 02:46:22 +01:00
# include "editor/editor_node.h"
2022-11-17 22:46:48 +01:00
# include "editor/editor_paths.h"
2022-05-08 09:46:53 +02:00
# include "editor/editor_scale.h"
2023-04-12 21:02:28 +02:00
# include "editor/export/editor_export.h"
2022-05-08 09:46:53 +02:00
# include "platform/windows/logo_svg.gen.h"
# include "platform/windows/run_icon_svg.gen.h"
# include "modules/modules_enabled.gen.h" // For svg.
# ifdef MODULE_SVG_ENABLED
# include "modules/svg/image_loader_svg.h"
# endif
2022-11-17 22:46:48 +01:00
Error EditorExportPlatformWindows : : _process_icon ( const Ref < EditorExportPreset > & p_preset , const String & p_src_path , const String & p_dst_path ) {
static const uint8_t icon_size [ ] = { 16 , 32 , 48 , 64 , 128 , 0 /*256*/ } ;
struct IconData {
Vector < uint8_t > data ;
uint8_t pal_colors = 0 ;
uint16_t planes = 0 ;
uint16_t bpp = 32 ;
} ;
HashMap < uint8_t , IconData > images ;
Error err ;
if ( p_src_path . get_extension ( ) = = " ico " ) {
Ref < FileAccess > f = FileAccess : : open ( p_src_path , FileAccess : : READ , & err ) ;
if ( err ! = OK ) {
return err ;
}
// Read ICONDIR.
f - > get_16 ( ) ; // Reserved.
uint16_t icon_type = f - > get_16 ( ) ; // Image type: 1 - ICO.
uint16_t icon_count = f - > get_16 ( ) ; // Number of images.
ERR_FAIL_COND_V ( icon_type ! = 1 , ERR_CANT_OPEN ) ;
for ( uint16_t i = 0 ; i < icon_count ; i + + ) {
// Read ICONDIRENTRY.
uint16_t w = f - > get_8 ( ) ; // Width in pixels.
uint16_t h = f - > get_8 ( ) ; // Height in pixels.
uint8_t pal_colors = f - > get_8 ( ) ; // Number of colors in the palette (0 - no palette).
f - > get_8 ( ) ; // Reserved.
uint16_t planes = f - > get_16 ( ) ; // Number of color planes.
uint16_t bpp = f - > get_16 ( ) ; // Bits per pixel.
uint32_t img_size = f - > get_32 ( ) ; // Image data size in bytes.
uint32_t img_offset = f - > get_32 ( ) ; // Image data offset.
if ( w ! = h ) {
continue ;
}
// Read image data.
uint64_t prev_offset = f - > get_position ( ) ;
images [ w ] . pal_colors = pal_colors ;
images [ w ] . planes = planes ;
images [ w ] . bpp = bpp ;
images [ w ] . data . resize ( img_size ) ;
f - > seek ( img_offset ) ;
f - > get_buffer ( images [ w ] . data . ptrw ( ) , img_size ) ;
f - > seek ( prev_offset ) ;
}
} else {
2022-11-20 12:16:16 +01:00
Ref < Image > src_image ;
src_image . instantiate ( ) ;
err = ImageLoader : : load_image ( p_src_path , src_image ) ;
ERR_FAIL_COND_V ( err ! = OK | | src_image - > is_empty ( ) , ERR_CANT_OPEN ) ;
2022-11-17 22:46:48 +01:00
for ( size_t i = 0 ; i < sizeof ( icon_size ) / sizeof ( icon_size [ 0 ] ) ; + + i ) {
int size = ( icon_size [ i ] = = 0 ) ? 256 : icon_size [ i ] ;
Ref < Image > res_image = src_image - > duplicate ( ) ;
ERR_FAIL_COND_V ( res_image . is_null ( ) | | res_image - > is_empty ( ) , ERR_CANT_OPEN ) ;
res_image - > resize ( size , size , ( Image : : Interpolation ) ( p_preset - > get ( " application/icon_interpolation " ) . operator int ( ) ) ) ;
images [ icon_size [ i ] ] . data = res_image - > save_png_to_buffer ( ) ;
}
}
uint16_t valid_icon_count = 0 ;
for ( size_t i = 0 ; i < sizeof ( icon_size ) / sizeof ( icon_size [ 0 ] ) ; + + i ) {
if ( images . has ( icon_size [ i ] ) ) {
valid_icon_count + + ;
} else {
int size = ( icon_size [ i ] = = 0 ) ? 256 : icon_size [ i ] ;
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Resources Modification " ) , vformat ( TTR ( " Icon size \" %d \" is missing. " ) , size ) ) ;
}
}
ERR_FAIL_COND_V ( valid_icon_count = = 0 , ERR_CANT_OPEN ) ;
Ref < FileAccess > fw = FileAccess : : open ( p_dst_path , FileAccess : : WRITE , & err ) ;
if ( err ! = OK ) {
return err ;
}
// Write ICONDIR.
fw - > store_16 ( 0 ) ; // Reserved.
fw - > store_16 ( 1 ) ; // Image type: 1 - ICO.
fw - > store_16 ( valid_icon_count ) ; // Number of images.
// Write ICONDIRENTRY.
uint32_t img_offset = 6 + 16 * valid_icon_count ;
for ( size_t i = 0 ; i < sizeof ( icon_size ) / sizeof ( icon_size [ 0 ] ) ; + + i ) {
if ( images . has ( icon_size [ i ] ) ) {
const IconData & di = images [ icon_size [ i ] ] ;
fw - > store_8 ( icon_size [ i ] ) ; // Width in pixels.
fw - > store_8 ( icon_size [ i ] ) ; // Height in pixels.
fw - > store_8 ( di . pal_colors ) ; // Number of colors in the palette (0 - no palette).
fw - > store_8 ( 0 ) ; // Reserved.
fw - > store_16 ( di . planes ) ; // Number of color planes.
fw - > store_16 ( di . bpp ) ; // Bits per pixel.
fw - > store_32 ( di . data . size ( ) ) ; // Image data size in bytes.
fw - > store_32 ( img_offset ) ; // Image data offset.
img_offset + = di . data . size ( ) ;
}
}
// Write image data.
for ( size_t i = 0 ; i < sizeof ( icon_size ) / sizeof ( icon_size [ 0 ] ) ; + + i ) {
if ( images . has ( icon_size [ i ] ) ) {
const IconData & di = images [ icon_size [ i ] ] ;
fw - > store_buffer ( di . data . ptr ( ) , di . data . size ( ) ) ;
}
}
return OK ;
}
2022-02-12 02:46:22 +01:00
2021-07-14 22:16:11 +02:00
Error EditorExportPlatformWindows : : sign_shared_object ( const Ref < EditorExportPreset > & p_preset , bool p_debug , const String & p_path ) {
if ( p_preset - > get ( " codesign/enable " ) ) {
return _code_sign ( p_preset , p_path ) ;
} else {
return OK ;
}
}
2022-05-04 11:57:21 +02:00
Error EditorExportPlatformWindows : : modify_template ( const Ref < EditorExportPreset > & p_preset , bool p_debug , const String & p_path , int p_flags ) {
if ( p_preset - > get ( " application/modify_resources " ) ) {
2022-10-14 12:18:25 +02:00
_rcedit_add_data ( p_preset , p_path , true ) ;
String wrapper_path = p_path . get_basename ( ) + " .console.exe " ;
if ( FileAccess : : exists ( wrapper_path ) ) {
_rcedit_add_data ( p_preset , wrapper_path , false ) ;
}
2022-05-04 11:57:21 +02:00
}
2022-06-03 17:34:24 +02:00
return OK ;
2022-05-04 11:57:21 +02:00
}
2021-07-14 22:16:11 +02:00
Error EditorExportPlatformWindows : : export_project ( const Ref < EditorExportPreset > & p_preset , bool p_debug , const String & p_path , int p_flags ) {
2022-05-08 09:46:53 +02:00
bool export_as_zip = p_path . ends_with ( " zip " ) ;
bool embedded = p_preset - > get ( " binary_format/embed_pck " ) ;
String pkg_name ;
if ( String ( ProjectSettings : : get_singleton ( ) - > get ( " application/config/name " ) ) ! = " " ) {
pkg_name = String ( ProjectSettings : : get_singleton ( ) - > get ( " application/config/name " ) ) ;
} else {
pkg_name = " Unnamed " ;
}
pkg_name = OS : : get_singleton ( ) - > get_safe_dir_name ( pkg_name ) ;
// Setup temp folder.
String path = p_path ;
String tmp_dir_path = EditorPaths : : get_singleton ( ) - > get_cache_dir ( ) . path_join ( pkg_name ) ;
Ref < DirAccess > tmp_app_dir = DirAccess : : create_for_path ( tmp_dir_path ) ;
if ( export_as_zip ) {
if ( tmp_app_dir . is_null ( ) ) {
return ERR_CANT_CREATE ;
}
if ( DirAccess : : exists ( tmp_dir_path ) ) {
if ( tmp_app_dir - > change_dir ( tmp_dir_path ) = = OK ) {
tmp_app_dir - > erase_contents_recursive ( ) ;
}
}
tmp_app_dir - > make_dir_recursive ( tmp_dir_path ) ;
path = tmp_dir_path . path_join ( p_path . get_file ( ) . get_basename ( ) + " .exe " ) ;
}
// Export project.
String pck_path = path ;
if ( embedded ) {
pck_path = pck_path . get_basename ( ) + " .tmp " ;
2021-12-20 10:28:54 +01:00
}
2022-05-04 11:57:21 +02:00
Error err = EditorExportPlatformPC : : export_project ( p_preset , p_debug , pck_path , p_flags ) ;
2021-07-14 22:16:11 +02:00
if ( p_preset - > get ( " codesign/enable " ) & & err = = OK ) {
2022-06-03 17:34:24 +02:00
_code_sign ( p_preset , pck_path ) ;
2022-10-14 12:18:25 +02:00
String wrapper_path = p_path . get_basename ( ) + " .console.exe " ;
if ( FileAccess : : exists ( wrapper_path ) ) {
_code_sign ( p_preset , wrapper_path ) ;
}
2021-12-20 10:28:54 +01:00
}
2022-05-04 11:57:21 +02:00
2022-05-08 09:46:53 +02:00
if ( embedded & & err = = OK ) {
2021-12-20 10:28:54 +01:00
Ref < DirAccess > tmp_dir = DirAccess : : create_for_path ( p_path . get_base_dir ( ) ) ;
err = tmp_dir - > rename ( pck_path , p_path ) ;
2022-06-03 17:34:24 +02:00
if ( err ! = OK ) {
add_message ( EXPORT_MESSAGE_ERROR , TTR ( " PCK Embedding " ) , vformat ( TTR ( " Failed to rename temporary file \" %s \" . " ) , pck_path ) ) ;
}
2021-07-14 22:16:11 +02:00
}
2022-05-08 09:46:53 +02:00
// ZIP project.
if ( export_as_zip ) {
if ( FileAccess : : exists ( p_path ) ) {
OS : : get_singleton ( ) - > move_to_trash ( p_path ) ;
}
Ref < FileAccess > io_fa_dst ;
zlib_filefunc_def io_dst = zipio_create_io ( & io_fa_dst ) ;
zipFile zip = zipOpen2 ( p_path . utf8 ( ) . get_data ( ) , APPEND_STATUS_CREATE , nullptr , & io_dst ) ;
zip_folder_recursive ( zip , tmp_dir_path , " " , pkg_name ) ;
zipClose ( zip , nullptr ) ;
if ( tmp_app_dir - > change_dir ( tmp_dir_path ) = = OK ) {
tmp_app_dir - > erase_contents_recursive ( ) ;
tmp_app_dir - > change_dir ( " .. " ) ;
tmp_app_dir - > remove ( pkg_name ) ;
}
}
2021-07-14 22:16:11 +02:00
return err ;
}
2022-03-22 15:40:34 +01:00
String EditorExportPlatformWindows : : get_template_file_name ( const String & p_target , const String & p_arch ) const {
2022-07-17 04:44:36 +02:00
return " windows_ " + p_target + " _ " + p_arch + " .exe " ;
2022-03-22 15:40:34 +01:00
}
2022-03-21 04:30:31 +01:00
List < String > EditorExportPlatformWindows : : get_binary_extensions ( const Ref < EditorExportPreset > & p_preset ) const {
List < String > list ;
list . push_back ( " exe " ) ;
2022-05-08 09:46:53 +02:00
list . push_back ( " zip " ) ;
2022-03-21 04:30:31 +01:00
return list ;
}
2023-03-09 09:41:52 +01:00
String EditorExportPlatformWindows : : get_export_option_warning ( const EditorExportPreset * p_preset , const StringName & p_name ) const {
if ( p_preset ) {
if ( p_name = = " application/icon " ) {
String icon_path = ProjectSettings : : get_singleton ( ) - > globalize_path ( p_preset - > get ( " application/icon " ) ) ;
if ( ! icon_path . is_empty ( ) & & ! FileAccess : : exists ( icon_path ) ) {
return TTR ( " Invalid icon path. " ) ;
}
} else if ( p_name = = " application/file_version " ) {
String file_version = p_preset - > get ( " application/file_version " ) ;
if ( ! file_version . is_empty ( ) ) {
PackedStringArray version_array = file_version . split ( " . " , false ) ;
if ( version_array . size ( ) ! = 4 | | ! version_array [ 0 ] . is_valid_int ( ) | |
! version_array [ 1 ] . is_valid_int ( ) | | ! version_array [ 2 ] . is_valid_int ( ) | |
! version_array [ 3 ] . is_valid_int ( ) | | file_version . find ( " - " ) > - 1 ) {
return TTR ( " Invalid file version. " ) ;
}
}
} else if ( p_name = = " application/product_version " ) {
String product_version = p_preset - > get ( " application/product_version " ) ;
if ( ! product_version . is_empty ( ) ) {
PackedStringArray version_array = product_version . split ( " . " , false ) ;
if ( version_array . size ( ) ! = 4 | | ! version_array [ 0 ] . is_valid_int ( ) | |
! version_array [ 1 ] . is_valid_int ( ) | | ! version_array [ 2 ] . is_valid_int ( ) | |
! version_array [ 3 ] . is_valid_int ( ) | | product_version . find ( " - " ) > - 1 ) {
return TTR ( " Invalid product version. " ) ;
}
}
}
}
return EditorExportPlatformPC : : get_export_option_warning ( p_preset , p_name ) ;
}
bool EditorExportPlatformWindows : : get_export_option_visibility ( const EditorExportPreset * p_preset , const String & p_option ) const {
2022-01-22 21:50:40 +01:00
// This option is not supported by "osslsigncode", used on non-Windows host.
if ( ! OS : : get_singleton ( ) - > has_feature ( " windows " ) & & p_option = = " codesign/identity_type " ) {
return false ;
}
2023-03-09 09:41:52 +01:00
// Hide codesign.
bool codesign = p_preset - > get ( " codesign/enable " ) ;
if ( ! codesign & & p_option ! = " codesign/enable " & & p_option . begins_with ( " codesign/ " ) ) {
return false ;
}
// Hide resources.
bool mod_res = p_preset - > get ( " application/modify_resources " ) ;
if ( ! mod_res & & p_option ! = " application/modify_resources " & & p_option . begins_with ( " application/ " ) ) {
return false ;
}
// Hide SSH options.
bool ssh = p_preset - > get ( " ssh_remote_deploy/enabled " ) ;
if ( ! ssh & & p_option ! = " ssh_remote_deploy/enabled " & & p_option . begins_with ( " ssh_remote_deploy/ " ) ) {
return false ;
}
2022-01-22 21:50:40 +01:00
return true ;
}
2023-03-09 09:41:52 +01:00
void EditorExportPlatformWindows : : get_export_options ( List < ExportOption > * r_options ) const {
2021-07-14 22:16:11 +02:00
EditorExportPlatformPC : : get_export_options ( r_options ) ;
2022-05-08 09:46:53 +02:00
2022-08-26 11:55:23 +02:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " binary_format/architecture " , PROPERTY_HINT_ENUM , " x86_64,x86_32,arm64 " ) , " x86_64 " ) ) ;
2021-07-14 22:16:11 +02:00
2023-03-09 09:41:52 +01:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : BOOL , " codesign/enable " ) , false , true ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : INT , " codesign/identity_type " , PROPERTY_HINT_ENUM , " Select automatically,Use PKCS12 file (specify *.PFX/*.P12 file),Use certificate store (specify SHA-1 hash) " ) , 0 ) ) ;
2021-07-14 22:16:11 +02:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " codesign/identity " , PROPERTY_HINT_GLOBAL_FILE , " *.pfx,*.p12 " ) , " " ) ) ;
2022-08-09 17:51:43 +02:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " codesign/password " , PROPERTY_HINT_PASSWORD ) , " " ) ) ;
2021-07-14 22:16:11 +02:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : BOOL , " codesign/timestamp " ) , true ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " codesign/timestamp_server_url " ) , " " ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : INT , " codesign/digest_algorithm " , PROPERTY_HINT_ENUM , " SHA1,SHA256 " ) , 1 ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " codesign/description " ) , " " ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : PACKED_STRING_ARRAY , " codesign/custom_options " ) , PackedStringArray ( ) ) ) ;
2023-03-09 09:41:52 +01:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : BOOL , " application/modify_resources " ) , true , true ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " application/icon " , PROPERTY_HINT_FILE , " *.ico,*.png,*.webp,*.svg " ) , " " , false , true ) ) ;
2022-12-17 13:39:46 +01:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " application/console_wrapper_icon " , PROPERTY_HINT_FILE , " *.ico,*.png,*.webp,*.svg " ) , " " ) ) ;
2022-11-17 22:46:48 +01:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : INT , " application/icon_interpolation " , PROPERTY_HINT_ENUM , " Nearest neighbor,Bilinear,Cubic,Trilinear,Lanczos " ) , 4 ) ) ;
2023-03-09 09:41:52 +01:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " application/file_version " , PROPERTY_HINT_PLACEHOLDER_TEXT , " 1.0.0.0 " ) , " " , false , true ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " application/product_version " , PROPERTY_HINT_PLACEHOLDER_TEXT , " 1.0.0.0 " ) , " " , false , true ) ) ;
2021-07-14 22:16:11 +02:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " application/company_name " , PROPERTY_HINT_PLACEHOLDER_TEXT , " Company Name " ) , " " ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " application/product_name " , PROPERTY_HINT_PLACEHOLDER_TEXT , " Game Name " ) , " " ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " application/file_description " ) , " " ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " application/copyright " ) , " " ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " application/trademarks " ) , " " ) ) ;
2022-05-08 09:46:53 +02:00
String run_script = " Expand-Archive -LiteralPath '{temp_dir} \\ {archive_name}' -DestinationPath '{temp_dir}' \n "
" $action = New-ScheduledTaskAction -Execute '{temp_dir} \\ {exe_name}' -Argument '{cmd_args}' \n "
" $trigger = New-ScheduledTaskTrigger -Once -At 00:00 \n "
" $settings = New-ScheduledTaskSettingsSet \n "
" $task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings \n "
" Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true \n "
" Start-ScheduledTask -TaskName godot_remote_debug \n "
" while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 } \n "
" Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue " ;
String cleanup_script = " Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue \n "
" Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue \n "
" Remove-Item -Recurse -Force '{temp_dir}' " ;
2023-03-09 09:41:52 +01:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : BOOL , " ssh_remote_deploy/enabled " ) , false , true ) ) ;
2022-05-08 09:46:53 +02:00
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " ssh_remote_deploy/host " ) , " user@host_ip " ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " ssh_remote_deploy/port " ) , " 22 " ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " ssh_remote_deploy/extra_args_ssh " , PROPERTY_HINT_MULTILINE_TEXT ) , " " ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " ssh_remote_deploy/extra_args_scp " , PROPERTY_HINT_MULTILINE_TEXT ) , " " ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " ssh_remote_deploy/run_script " , PROPERTY_HINT_MULTILINE_TEXT ) , run_script ) ) ;
r_options - > push_back ( ExportOption ( PropertyInfo ( Variant : : STRING , " ssh_remote_deploy/cleanup_script " , PROPERTY_HINT_MULTILINE_TEXT ) , cleanup_script ) ) ;
2021-07-14 22:16:11 +02:00
}
2022-11-15 22:47:21 +01:00
Error EditorExportPlatformWindows : : _rcedit_add_data ( const Ref < EditorExportPreset > & p_preset , const String & p_path , bool p_console_icon ) {
2022-10-18 16:43:37 +02:00
String rcedit_path = EDITOR_GET ( " export/windows/rcedit " ) ;
2021-07-14 22:16:11 +02:00
2022-04-28 09:48:30 +02:00
if ( rcedit_path ! = String ( ) & & ! FileAccess : : exists ( rcedit_path ) ) {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Resources Modification " ) , vformat ( TTR ( " Could not find rcedit executable at \" %s \" . " ) , rcedit_path ) ) ;
2021-12-20 10:28:54 +01:00
return ERR_FILE_NOT_FOUND ;
2021-07-14 22:16:11 +02:00
}
2022-04-28 09:48:30 +02:00
if ( rcedit_path = = String ( ) ) {
rcedit_path = " rcedit " ; // try to run rcedit from PATH
2021-07-14 22:16:11 +02:00
}
# ifndef WINDOWS_ENABLED
// On non-Windows we need WINE to run rcedit
2022-10-18 16:43:37 +02:00
String wine_path = EDITOR_GET ( " export/windows/wine " ) ;
2021-07-14 22:16:11 +02:00
2021-12-09 10:42:46 +01:00
if ( ! wine_path . is_empty ( ) & & ! FileAccess : : exists ( wine_path ) ) {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Resources Modification " ) , vformat ( TTR ( " Could not find wine executable at \" %s \" . " ) , wine_path ) ) ;
2021-12-20 10:28:54 +01:00
return ERR_FILE_NOT_FOUND ;
2021-07-14 22:16:11 +02:00
}
2021-12-09 10:42:46 +01:00
if ( wine_path . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
wine_path = " wine " ; // try to run wine from PATH
}
# endif
String icon_path = ProjectSettings : : get_singleton ( ) - > globalize_path ( p_preset - > get ( " application/icon " ) ) ;
2022-11-15 22:47:21 +01:00
if ( p_console_icon ) {
String console_icon_path = ProjectSettings : : get_singleton ( ) - > globalize_path ( p_preset - > get ( " application/console_wrapper_icon " ) ) ;
if ( ! console_icon_path . is_empty ( ) & & FileAccess : : exists ( console_icon_path ) ) {
icon_path = console_icon_path ;
}
}
2022-11-17 22:46:48 +01:00
String tmp_icon_path = EditorPaths : : get_singleton ( ) - > get_cache_dir ( ) . path_join ( " _rcedit.ico " ) ;
if ( ! icon_path . is_empty ( ) ) {
if ( _process_icon ( p_preset , icon_path , tmp_icon_path ) ! = OK ) {
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Resources Modification " ) , vformat ( TTR ( " Invalid icon file \" %s \" . " ) , icon_path ) ) ;
icon_path = String ( ) ;
}
}
2021-07-14 22:16:11 +02:00
String file_verion = p_preset - > get ( " application/file_version " ) ;
String product_version = p_preset - > get ( " application/product_version " ) ;
String company_name = p_preset - > get ( " application/company_name " ) ;
String product_name = p_preset - > get ( " application/product_name " ) ;
String file_description = p_preset - > get ( " application/file_description " ) ;
String copyright = p_preset - > get ( " application/copyright " ) ;
String trademarks = p_preset - > get ( " application/trademarks " ) ;
String comments = p_preset - > get ( " application/comments " ) ;
List < String > args ;
args . push_back ( p_path ) ;
2022-11-15 22:47:21 +01:00
if ( ! icon_path . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
args . push_back ( " --set-icon " ) ;
2022-11-17 22:46:48 +01:00
args . push_back ( tmp_icon_path ) ;
2021-07-14 22:16:11 +02:00
}
2021-12-09 10:42:46 +01:00
if ( ! file_verion . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
args . push_back ( " --set-file-version " ) ;
args . push_back ( file_verion ) ;
}
2021-12-09 10:42:46 +01:00
if ( ! product_version . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
args . push_back ( " --set-product-version " ) ;
args . push_back ( product_version ) ;
}
2021-12-09 10:42:46 +01:00
if ( ! company_name . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
args . push_back ( " --set-version-string " ) ;
args . push_back ( " CompanyName " ) ;
args . push_back ( company_name ) ;
}
2021-12-09 10:42:46 +01:00
if ( ! product_name . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
args . push_back ( " --set-version-string " ) ;
args . push_back ( " ProductName " ) ;
args . push_back ( product_name ) ;
}
2021-12-09 10:42:46 +01:00
if ( ! file_description . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
args . push_back ( " --set-version-string " ) ;
args . push_back ( " FileDescription " ) ;
args . push_back ( file_description ) ;
}
2021-12-09 10:42:46 +01:00
if ( ! copyright . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
args . push_back ( " --set-version-string " ) ;
args . push_back ( " LegalCopyright " ) ;
args . push_back ( copyright ) ;
}
2021-12-09 10:42:46 +01:00
if ( ! trademarks . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
args . push_back ( " --set-version-string " ) ;
args . push_back ( " LegalTrademarks " ) ;
args . push_back ( trademarks ) ;
}
2021-12-20 10:28:54 +01:00
# ifndef WINDOWS_ENABLED
2021-07-14 22:16:11 +02:00
// On non-Windows we need WINE to run rcedit
args . push_front ( rcedit_path ) ;
2021-12-20 10:28:54 +01:00
rcedit_path = wine_path ;
2021-07-14 22:16:11 +02:00
# endif
2021-12-20 10:28:54 +01:00
String str ;
Error err = OS : : get_singleton ( ) - > execute ( rcedit_path , args , & str , nullptr , true ) ;
2022-11-17 22:46:48 +01:00
if ( FileAccess : : exists ( tmp_icon_path ) ) {
DirAccess : : remove_file_or_error ( tmp_icon_path ) ;
}
2022-06-03 17:34:24 +02:00
if ( err ! = OK | | ( str . find ( " not found " ) ! = - 1 ) | | ( str . find ( " not recognized " ) ! = - 1 ) ) {
2022-08-09 17:51:43 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Resources Modification " ) , TTR ( " Could not start rcedit executable. Configure rcedit path in the Editor Settings (Export > Windows > rcedit), or disable \" Application > Modify Resources \" in the export preset. " ) ) ;
2022-06-03 17:34:24 +02:00
return err ;
}
2021-12-20 10:28:54 +01:00
print_line ( " rcedit ( " + p_path + " ): " + str ) ;
if ( str . find ( " Fatal error " ) ! = - 1 ) {
2022-07-29 21:31:39 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Resources Modification " ) , vformat ( TTR ( " rcedit failed to modify executable: %s. " ) , str ) ) ;
2021-12-20 10:28:54 +01:00
return FAILED ;
}
return OK ;
2021-07-14 22:16:11 +02:00
}
Error EditorExportPlatformWindows : : _code_sign ( const Ref < EditorExportPreset > & p_preset , const String & p_path ) {
List < String > args ;
# ifdef WINDOWS_ENABLED
2022-10-18 16:43:37 +02:00
String signtool_path = EDITOR_GET ( " export/windows/signtool " ) ;
2021-12-09 10:42:46 +01:00
if ( ! signtool_path . is_empty ( ) & & ! FileAccess : : exists ( signtool_path ) ) {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , vformat ( TTR ( " Could not find signtool executable at \" %s \" . " ) , signtool_path ) ) ;
2021-07-14 22:16:11 +02:00
return ERR_FILE_NOT_FOUND ;
}
2021-12-09 10:42:46 +01:00
if ( signtool_path . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
signtool_path = " signtool " ; // try to run signtool from PATH
}
# else
2022-10-18 16:43:37 +02:00
String signtool_path = EDITOR_GET ( " export/windows/osslsigncode " ) ;
2021-12-09 10:42:46 +01:00
if ( ! signtool_path . is_empty ( ) & & ! FileAccess : : exists ( signtool_path ) ) {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , vformat ( TTR ( " Could not find osslsigncode executable at \" %s \" . " ) , signtool_path ) ) ;
2021-07-14 22:16:11 +02:00
return ERR_FILE_NOT_FOUND ;
}
2021-12-09 10:42:46 +01:00
if ( signtool_path . is_empty ( ) ) {
2021-07-14 22:16:11 +02:00
signtool_path = " osslsigncode " ; // try to run signtool from PATH
}
# endif
args . push_back ( " sign " ) ;
//identity
# ifdef WINDOWS_ENABLED
int id_type = p_preset - > get ( " codesign/identity_type " ) ;
if ( id_type = = 0 ) { //auto select
args . push_back ( " /a " ) ;
} else if ( id_type = = 1 ) { //pkcs12
if ( p_preset - > get ( " codesign/identity " ) ! = " " ) {
args . push_back ( " /f " ) ;
args . push_back ( p_preset - > get ( " codesign/identity " ) ) ;
} else {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , TTR ( " No identity found. " ) ) ;
2021-07-14 22:16:11 +02:00
return FAILED ;
}
} else if ( id_type = = 2 ) { //Windows certificate store
if ( p_preset - > get ( " codesign/identity " ) ! = " " ) {
args . push_back ( " /sha1 " ) ;
args . push_back ( p_preset - > get ( " codesign/identity " ) ) ;
} else {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , TTR ( " No identity found. " ) ) ;
2021-07-14 22:16:11 +02:00
return FAILED ;
}
} else {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , TTR ( " Invalid identity type. " ) ) ;
2021-07-14 22:16:11 +02:00
return FAILED ;
}
# else
2023-02-22 08:07:00 +01:00
int id_type = 1 ;
2021-07-14 22:16:11 +02:00
if ( p_preset - > get ( " codesign/identity " ) ! = " " ) {
args . push_back ( " -pkcs12 " ) ;
args . push_back ( p_preset - > get ( " codesign/identity " ) ) ;
} else {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , TTR ( " No identity found. " ) ) ;
2021-07-14 22:16:11 +02:00
return FAILED ;
}
# endif
//password
2023-02-22 08:07:00 +01:00
if ( ( id_type = = 1 ) & & ( p_preset - > get ( " codesign/password " ) ! = " " ) ) {
2021-07-14 22:16:11 +02:00
# ifdef WINDOWS_ENABLED
args . push_back ( " /p " ) ;
# else
args . push_back ( " -pass " ) ;
# endif
args . push_back ( p_preset - > get ( " codesign/password " ) ) ;
}
//timestamp
if ( p_preset - > get ( " codesign/timestamp " ) ) {
if ( p_preset - > get ( " codesign/timestamp_server " ) ! = " " ) {
# ifdef WINDOWS_ENABLED
args . push_back ( " /tr " ) ;
args . push_back ( p_preset - > get ( " codesign/timestamp_server_url " ) ) ;
args . push_back ( " /td " ) ;
if ( ( int ) p_preset - > get ( " codesign/digest_algorithm " ) = = 0 ) {
args . push_back ( " sha1 " ) ;
} else {
args . push_back ( " sha256 " ) ;
}
# else
args . push_back ( " -ts " ) ;
args . push_back ( p_preset - > get ( " codesign/timestamp_server_url " ) ) ;
# endif
} else {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , TTR ( " Invalid timestamp server. " ) ) ;
2021-07-14 22:16:11 +02:00
return FAILED ;
}
}
//digest
# ifdef WINDOWS_ENABLED
args . push_back ( " /fd " ) ;
# else
args . push_back ( " -h " ) ;
# endif
if ( ( int ) p_preset - > get ( " codesign/digest_algorithm " ) = = 0 ) {
args . push_back ( " sha1 " ) ;
} else {
args . push_back ( " sha256 " ) ;
}
//description
if ( p_preset - > get ( " codesign/description " ) ! = " " ) {
# ifdef WINDOWS_ENABLED
args . push_back ( " /d " ) ;
# else
args . push_back ( " -n " ) ;
# endif
args . push_back ( p_preset - > get ( " codesign/description " ) ) ;
}
//user options
PackedStringArray user_args = p_preset - > get ( " codesign/custom_options " ) ;
for ( int i = 0 ; i < user_args . size ( ) ; i + + ) {
String user_arg = user_args [ i ] . strip_edges ( ) ;
if ( ! user_arg . is_empty ( ) ) {
args . push_back ( user_arg ) ;
}
}
# ifndef WINDOWS_ENABLED
args . push_back ( " -in " ) ;
# endif
args . push_back ( p_path ) ;
# ifndef WINDOWS_ENABLED
args . push_back ( " -out " ) ;
args . push_back ( p_path + " _signed " ) ;
# endif
String str ;
Error err = OS : : get_singleton ( ) - > execute ( signtool_path , args , & str , nullptr , true ) ;
2022-06-03 17:34:24 +02:00
if ( err ! = OK | | ( str . find ( " not found " ) ! = - 1 ) | | ( str . find ( " not recognized " ) ! = - 1 ) ) {
2023-02-22 08:07:00 +01:00
# ifdef WINDOWS_ENABLED
2022-08-09 17:51:43 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , TTR ( " Could not start signtool executable. Configure signtool path in the Editor Settings (Export > Windows > signtool), or disable \" Codesign \" in the export preset. " ) ) ;
# else
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , TTR ( " Could not start osslsigncode executable. Configure signtool path in the Editor Settings (Export > Windows > osslsigncode), or disable \" Codesign \" in the export preset. " ) ) ;
# endif
2022-06-03 17:34:24 +02:00
return err ;
}
2021-07-14 22:16:11 +02:00
print_line ( " codesign ( " + p_path + " ): " + str ) ;
# ifndef WINDOWS_ENABLED
if ( str . find ( " SignTool Error " ) ! = - 1 ) {
# else
if ( str . find ( " Failed " ) ! = - 1 ) {
# endif
2022-07-29 21:31:39 +02:00
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , vformat ( TTR ( " Signtool failed to sign executable: %s. " ) , str ) ) ;
2021-07-14 22:16:11 +02:00
return FAILED ;
}
# ifndef WINDOWS_ENABLED
2022-03-23 10:08:58 +01:00
Ref < DirAccess > tmp_dir = DirAccess : : create_for_path ( p_path . get_base_dir ( ) ) ;
2021-07-14 22:16:11 +02:00
err = tmp_dir - > remove ( p_path ) ;
2022-06-03 17:34:24 +02:00
if ( err ! = OK ) {
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , vformat ( TTR ( " Failed to remove temporary file \" %s \" . " ) , p_path ) ) ;
return err ;
}
2021-07-14 22:16:11 +02:00
err = tmp_dir - > rename ( p_path + " _signed " , p_path ) ;
2022-06-03 17:34:24 +02:00
if ( err ! = OK ) {
add_message ( EXPORT_MESSAGE_WARNING , TTR ( " Code Signing " ) , vformat ( TTR ( " Failed to rename temporary file \" %s \" . " ) , p_path + " _signed " ) ) ;
return err ;
}
2021-07-14 22:16:11 +02:00
# endif
return OK ;
}
2022-02-03 09:25:00 +01:00
2022-07-17 21:26:03 +02:00
bool EditorExportPlatformWindows : : has_valid_export_configuration ( const Ref < EditorExportPreset > & p_preset , String & r_error , bool & r_missing_templates ) const {
2022-02-03 09:25:00 +01:00
String err = " " ;
2022-07-17 21:26:03 +02:00
bool valid = EditorExportPlatformPC : : has_valid_export_configuration ( p_preset , err , r_missing_templates ) ;
2022-02-03 09:25:00 +01:00
2022-10-18 16:43:37 +02:00
String rcedit_path = EDITOR_GET ( " export/windows/rcedit " ) ;
2022-04-28 09:48:30 +02:00
if ( p_preset - > get ( " application/modify_resources " ) & & rcedit_path . is_empty ( ) ) {
2022-08-09 17:51:43 +02:00
err + = TTR ( " The rcedit tool must be configured in the Editor Settings (Export > Windows > rcedit) to change the icon or app information data. " ) + " \n " ;
2022-02-03 09:25:00 +01:00
}
2022-07-17 21:26:03 +02:00
if ( ! err . is_empty ( ) ) {
r_error = err ;
}
return valid ;
}
bool EditorExportPlatformWindows : : has_valid_project_configuration ( const Ref < EditorExportPreset > & p_preset , String & r_error ) const {
String err = " " ;
bool valid = true ;
2023-03-09 09:41:52 +01:00
List < ExportOption > options ;
get_export_options ( & options ) ;
for ( const EditorExportPlatform : : ExportOption & E : options ) {
if ( get_export_option_visibility ( p_preset . ptr ( ) , E . option . name ) ) {
String warn = get_export_option_warning ( p_preset . ptr ( ) , E . option . name ) ;
if ( ! warn . is_empty ( ) ) {
err + = warn + " \n " ;
if ( E . required ) {
valid = false ;
}
}
2022-02-03 09:25:00 +01:00
}
}
if ( ! err . is_empty ( ) ) {
r_error = err ;
}
return valid ;
}
2022-03-21 01:31:05 +01:00
2022-06-03 17:34:24 +02:00
Error EditorExportPlatformWindows : : fixup_embedded_pck ( const String & p_path , int64_t p_embedded_start , int64_t p_embedded_size ) {
2022-03-21 01:31:05 +01:00
// Patch the header of the "pck" section in the PE file so that it corresponds to the embedded data
2021-12-20 10:28:54 +01:00
if ( p_embedded_size + p_embedded_start > = 0x100000000 ) { // Check for total executable size
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_ERROR , TTR ( " PCK Embedding " ) , TTR ( " Windows executables cannot be >= 4 GiB. " ) ) ;
return ERR_INVALID_DATA ;
2021-12-20 10:28:54 +01:00
}
2022-03-23 10:08:58 +01:00
Ref < FileAccess > f = FileAccess : : open ( p_path , FileAccess : : READ_WRITE ) ;
if ( f . is_null ( ) ) {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_ERROR , TTR ( " PCK Embedding " ) , vformat ( TTR ( " Failed to open executable file \" %s \" . " ) , p_path ) ) ;
2022-03-21 01:31:05 +01:00
return ERR_CANT_OPEN ;
}
// Jump to the PE header and check the magic number
{
f - > seek ( 0x3c ) ;
uint32_t pe_pos = f - > get_32 ( ) ;
f - > seek ( pe_pos ) ;
uint32_t magic = f - > get_32 ( ) ;
if ( magic ! = 0x00004550 ) {
2022-06-03 17:34:24 +02:00
add_message ( EXPORT_MESSAGE_ERROR , TTR ( " PCK Embedding " ) , TTR ( " Executable file header corrupted. " ) ) ;
2022-03-21 01:31:05 +01:00
return ERR_FILE_CORRUPT ;
}
}
// Process header
int num_sections ;
{
int64_t header_pos = f - > get_position ( ) ;
f - > seek ( header_pos + 2 ) ;
num_sections = f - > get_16 ( ) ;
f - > seek ( header_pos + 16 ) ;
uint16_t opt_header_size = f - > get_16 ( ) ;
// Skip rest of header + optional header to go to the section headers
f - > seek ( f - > get_position ( ) + 2 + opt_header_size ) ;
}
// Search for the "pck" section
int64_t section_table_pos = f - > get_position ( ) ;
bool found = false ;
for ( int i = 0 ; i < num_sections ; + + i ) {
int64_t section_header_pos = section_table_pos + i * 40 ;
f - > seek ( section_header_pos ) ;
uint8_t section_name [ 9 ] ;
f - > get_buffer ( section_name , 8 ) ;
section_name [ 8 ] = ' \0 ' ;
if ( strcmp ( ( char * ) section_name , " pck " ) = = 0 ) {
// "pck" section found, let's patch!
// Set virtual size to a little to avoid it taking memory (zero would give issues)
f - > seek ( section_header_pos + 8 ) ;
f - > store_32 ( 8 ) ;
f - > seek ( section_header_pos + 16 ) ;
f - > store_32 ( p_embedded_size ) ;
f - > seek ( section_header_pos + 20 ) ;
f - > store_32 ( p_embedded_start ) ;
found = true ;
break ;
}
}
2022-06-03 17:34:24 +02:00
if ( ! found ) {
add_message ( EXPORT_MESSAGE_ERROR , TTR ( " PCK Embedding " ) , TTR ( " Executable \" pck \" section not found. " ) ) ;
return ERR_FILE_CORRUPT ;
}
return OK ;
2022-03-21 01:31:05 +01:00
}
2022-05-08 09:46:53 +02:00
Ref < Texture2D > EditorExportPlatformWindows : : get_run_icon ( ) const {
return run_icon ;
}
bool EditorExportPlatformWindows : : poll_export ( ) {
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 ( ) = = this ) {
preset = ep ;
break ;
}
}
int prev = menu_options ;
menu_options = ( preset . is_valid ( ) & & preset - > get ( " ssh_remote_deploy/enabled " ) . operator bool ( ) ) ;
if ( ssh_pid ! = 0 | | ! cleanup_commands . is_empty ( ) ) {
if ( menu_options = = 0 ) {
cleanup ( ) ;
} else {
menu_options + = 1 ;
}
}
return menu_options ! = prev ;
}
Ref < ImageTexture > EditorExportPlatformWindows : : get_option_icon ( int p_index ) const {
return p_index = = 1 ? stop_icon : EditorExportPlatform : : get_option_icon ( p_index ) ;
}
int EditorExportPlatformWindows : : get_options_count ( ) const {
return menu_options ;
}
String EditorExportPlatformWindows : : get_option_label ( int p_index ) const {
return ( p_index ) ? TTR ( " Stop and uninstall " ) : TTR ( " Run on remote Windows system " ) ;
}
String EditorExportPlatformWindows : : get_option_tooltip ( int p_index ) const {
return ( p_index ) ? TTR ( " Stop and uninstall running project from the remote system " ) : TTR ( " Run exported project on remote Windows system " ) ;
}
void EditorExportPlatformWindows : : cleanup ( ) {
if ( ssh_pid ! = 0 & & OS : : get_singleton ( ) - > is_process_running ( ssh_pid ) ) {
print_line ( " Terminating connection... " ) ;
OS : : get_singleton ( ) - > kill ( ssh_pid ) ;
OS : : get_singleton ( ) - > delay_usec ( 1000 ) ;
}
if ( ! cleanup_commands . is_empty ( ) ) {
print_line ( " Stopping and deleting previous version... " ) ;
for ( const SSHCleanupCommand & cmd : cleanup_commands ) {
if ( cmd . wait ) {
ssh_run_on_remote ( cmd . host , cmd . port , cmd . ssh_args , cmd . cmd_args ) ;
} else {
ssh_run_on_remote_no_wait ( cmd . host , cmd . port , cmd . ssh_args , cmd . cmd_args ) ;
}
}
}
ssh_pid = 0 ;
cleanup_commands . clear ( ) ;
}
Error EditorExportPlatformWindows : : run ( const Ref < EditorExportPreset > & p_preset , int p_device , int p_debug_flags ) {
cleanup ( ) ;
if ( p_device ) { // Stop command, cleanup only.
return OK ;
}
EditorProgress ep ( " run " , TTR ( " Running... " ) , 5 ) ;
const String dest = EditorPaths : : get_singleton ( ) - > get_cache_dir ( ) . path_join ( " windows " ) ;
Ref < DirAccess > da = DirAccess : : create ( DirAccess : : ACCESS_FILESYSTEM ) ;
if ( ! da - > dir_exists ( dest ) ) {
Error err = da - > make_dir_recursive ( dest ) ;
if ( err ! = OK ) {
EditorNode : : get_singleton ( ) - > show_warning ( TTR ( " Could not create temp directory: " ) + " \n " + dest ) ;
return err ;
}
}
String host = p_preset - > get ( " ssh_remote_deploy/host " ) . operator String ( ) ;
String port = p_preset - > get ( " ssh_remote_deploy/port " ) . operator String ( ) ;
if ( port . is_empty ( ) ) {
port = " 22 " ;
}
2023-01-27 09:09:30 +01:00
Vector < String > extra_args_ssh = p_preset - > get ( " ssh_remote_deploy/extra_args_ssh " ) . operator String ( ) . split ( " " , false ) ;
Vector < String > extra_args_scp = p_preset - > get ( " ssh_remote_deploy/extra_args_scp " ) . operator String ( ) . split ( " " , false ) ;
2022-05-08 09:46:53 +02:00
const String basepath = dest . path_join ( " tmp_windows_export " ) ;
# define CLEANUP_AND_RETURN(m_err) \
{ \
if ( da - > file_exists ( basepath + " .zip " ) ) { \
da - > remove ( basepath + " .zip " ) ; \
} \
if ( da - > file_exists ( basepath + " _start.ps1 " ) ) { \
da - > remove ( basepath + " _start.ps1 " ) ; \
} \
if ( da - > file_exists ( basepath + " _clean.ps1 " ) ) { \
da - > remove ( basepath + " _clean.ps1 " ) ; \
} \
return m_err ; \
} \
( ( void ) 0 )
if ( ep . step ( TTR ( " Exporting project... " ) , 1 ) ) {
return ERR_SKIP ;
}
Error err = export_project ( p_preset , true , basepath + " .zip " , p_debug_flags ) ;
if ( err ! = OK ) {
DirAccess : : remove_file_or_error ( basepath + " .zip " ) ;
return err ;
}
String cmd_args ;
{
Vector < String > cmd_args_list ;
gen_debug_flags ( cmd_args_list , p_debug_flags ) ;
for ( int i = 0 ; i < cmd_args_list . size ( ) ; i + + ) {
if ( i ! = 0 ) {
cmd_args + = " " ;
}
cmd_args + = cmd_args_list [ i ] ;
}
}
const bool use_remote = ( p_debug_flags & DEBUG_FLAG_REMOTE_DEBUG ) | | ( p_debug_flags & DEBUG_FLAG_DUMB_CLIENT ) ;
int dbg_port = EditorSettings : : get_singleton ( ) - > get ( " network/debug/remote_port " ) ;
print_line ( " Creating temporary directory... " ) ;
ep . step ( TTR ( " Creating temporary directory... " ) , 2 ) ;
String temp_dir ;
2023-02-27 08:54:49 +01:00
# ifndef WINDOWS_ENABLED
2022-05-08 09:46:53 +02:00
err = ssh_run_on_remote ( host , port , extra_args_ssh , " powershell -command \\ \" \\ $tmp = Join-Path \\ $Env:Temp \\ $(New-Guid); New-Item -Type Directory -Path \\ $tmp | Out-Null; Write-Output \\ $tmp \\ \" " , & temp_dir ) ;
2023-02-27 08:54:49 +01:00
# else
err = ssh_run_on_remote ( host , port , extra_args_ssh , " powershell -command \" $tmp = Join-Path $Env:Temp $(New-Guid); New-Item -Type Directory -Path $tmp ^| Out-Null; Write-Output $tmp \" " , & temp_dir ) ;
# endif
2022-05-08 09:46:53 +02:00
if ( err ! = OK | | temp_dir . is_empty ( ) ) {
CLEANUP_AND_RETURN ( err ) ;
}
print_line ( " Uploading archive... " ) ;
ep . step ( TTR ( " Uploading archive... " ) , 3 ) ;
err = ssh_push_to_remote ( host , port , extra_args_scp , basepath + " .zip " , temp_dir ) ;
if ( err ! = OK ) {
CLEANUP_AND_RETURN ( err ) ;
}
2023-02-27 08:54:49 +01:00
if ( cmd_args . is_empty ( ) ) {
cmd_args = " " ;
}
2022-05-08 09:46:53 +02:00
{
String run_script = p_preset - > get ( " ssh_remote_deploy/run_script " ) ;
run_script = run_script . replace ( " {temp_dir} " , temp_dir ) ;
run_script = run_script . replace ( " {archive_name} " , basepath . get_file ( ) + " .zip " ) ;
run_script = run_script . replace ( " {exe_name} " , basepath . get_file ( ) + " .exe " ) ;
run_script = run_script . replace ( " {cmd_args} " , cmd_args ) ;
Ref < FileAccess > f = FileAccess : : open ( basepath + " _start.ps1 " , FileAccess : : WRITE ) ;
if ( f . is_null ( ) ) {
CLEANUP_AND_RETURN ( err ) ;
}
f - > store_string ( run_script ) ;
}
{
String clean_script = p_preset - > get ( " ssh_remote_deploy/cleanup_script " ) ;
clean_script = clean_script . replace ( " {temp_dir} " , temp_dir ) ;
clean_script = clean_script . replace ( " {archive_name} " , basepath . get_file ( ) + " .zip " ) ;
clean_script = clean_script . replace ( " {exe_name} " , basepath . get_file ( ) + " .exe " ) ;
clean_script = clean_script . replace ( " {cmd_args} " , cmd_args ) ;
Ref < FileAccess > f = FileAccess : : open ( basepath + " _clean.ps1 " , FileAccess : : WRITE ) ;
if ( f . is_null ( ) ) {
CLEANUP_AND_RETURN ( err ) ;
}
f - > store_string ( clean_script ) ;
}
print_line ( " Uploading scripts... " ) ;
ep . step ( TTR ( " Uploading scripts... " ) , 4 ) ;
err = ssh_push_to_remote ( host , port , extra_args_scp , basepath + " _start.ps1 " , temp_dir ) ;
if ( err ! = OK ) {
CLEANUP_AND_RETURN ( err ) ;
}
err = ssh_push_to_remote ( host , port , extra_args_scp , basepath + " _clean.ps1 " , temp_dir ) ;
if ( err ! = OK ) {
CLEANUP_AND_RETURN ( err ) ;
}
print_line ( " Starting project... " ) ;
ep . step ( TTR ( " Starting project... " ) , 5 ) ;
err = ssh_run_on_remote_no_wait ( host , port , extra_args_ssh , vformat ( " powershell -file \" %s \\ %s \" " , temp_dir , basepath . get_file ( ) + " _start.ps1 " ) , & ssh_pid , ( use_remote ) ? dbg_port : - 1 ) ;
if ( err ! = OK ) {
CLEANUP_AND_RETURN ( err ) ;
}
cleanup_commands . clear ( ) ;
cleanup_commands . push_back ( SSHCleanupCommand ( host , port , extra_args_ssh , vformat ( " powershell -file \" %s \\ %s \" " , temp_dir , basepath . get_file ( ) + " _clean.ps1 " ) ) ) ;
print_line ( " Project started. " ) ;
CLEANUP_AND_RETURN ( OK ) ;
# undef CLEANUP_AND_RETURN
}
EditorExportPlatformWindows : : EditorExportPlatformWindows ( ) {
2023-03-09 09:41:52 +01:00
if ( EditorNode : : get_singleton ( ) ) {
2022-05-08 09:46:53 +02:00
# ifdef MODULE_SVG_ENABLED
2023-03-09 09:41:52 +01:00
Ref < Image > img = memnew ( Image ) ;
const bool upsample = ! Math : : is_equal_approx ( Math : : round ( EDSCALE ) , EDSCALE ) ;
2022-05-08 09:46:53 +02:00
2023-03-09 09:41:52 +01:00
ImageLoaderSVG img_loader ;
img_loader . create_image_from_string ( img , _windows_logo_svg , EDSCALE , upsample , false ) ;
set_logo ( ImageTexture : : create_from_image ( img ) ) ;
2022-05-08 09:46:53 +02:00
2023-03-09 09:41:52 +01:00
img_loader . create_image_from_string ( img , _windows_run_icon_svg , EDSCALE , upsample , false ) ;
run_icon = ImageTexture : : create_from_image ( img ) ;
2022-05-08 09:46:53 +02:00
# endif
2023-03-09 09:41:52 +01:00
Ref < Theme > theme = EditorNode : : get_singleton ( ) - > get_editor_theme ( ) ;
if ( theme . is_valid ( ) ) {
stop_icon = theme - > get_icon ( SNAME ( " Stop " ) , SNAME ( " EditorIcons " ) ) ;
} else {
stop_icon . instantiate ( ) ;
}
2022-05-08 09:46:53 +02:00
}
}