export_plugin.cpp 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101
  1. /**************************************************************************/
  2. /* export_plugin.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 "export_plugin.h"
  31. #include "logo_svg.gen.h"
  32. #include "run_icon_svg.gen.h"
  33. #include "core/config/project_settings.h"
  34. #include "core/io/image_loader.h"
  35. #include "editor/editor_node.h"
  36. #include "editor/editor_paths.h"
  37. #include "editor/editor_scale.h"
  38. #include "editor/editor_string_names.h"
  39. #include "editor/export/editor_export.h"
  40. #include "modules/modules_enabled.gen.h" // For svg.
  41. #ifdef MODULE_SVG_ENABLED
  42. #include "modules/svg/image_loader_svg.h"
  43. #endif
  44. Error EditorExportPlatformWindows::_process_icon(const Ref<EditorExportPreset> &p_preset, const String &p_src_path, const String &p_dst_path) {
  45. static const uint8_t icon_size[] = { 16, 32, 48, 64, 128, 0 /*256*/ };
  46. struct IconData {
  47. Vector<uint8_t> data;
  48. uint8_t pal_colors = 0;
  49. uint16_t planes = 0;
  50. uint16_t bpp = 32;
  51. };
  52. HashMap<uint8_t, IconData> images;
  53. Error err;
  54. if (p_src_path.get_extension() == "ico") {
  55. Ref<FileAccess> f = FileAccess::open(p_src_path, FileAccess::READ, &err);
  56. if (err != OK) {
  57. return err;
  58. }
  59. // Read ICONDIR.
  60. f->get_16(); // Reserved.
  61. uint16_t icon_type = f->get_16(); // Image type: 1 - ICO.
  62. uint16_t icon_count = f->get_16(); // Number of images.
  63. ERR_FAIL_COND_V(icon_type != 1, ERR_CANT_OPEN);
  64. for (uint16_t i = 0; i < icon_count; i++) {
  65. // Read ICONDIRENTRY.
  66. uint16_t w = f->get_8(); // Width in pixels.
  67. uint16_t h = f->get_8(); // Height in pixels.
  68. uint8_t pal_colors = f->get_8(); // Number of colors in the palette (0 - no palette).
  69. f->get_8(); // Reserved.
  70. uint16_t planes = f->get_16(); // Number of color planes.
  71. uint16_t bpp = f->get_16(); // Bits per pixel.
  72. uint32_t img_size = f->get_32(); // Image data size in bytes.
  73. uint32_t img_offset = f->get_32(); // Image data offset.
  74. if (w != h) {
  75. continue;
  76. }
  77. // Read image data.
  78. uint64_t prev_offset = f->get_position();
  79. images[w].pal_colors = pal_colors;
  80. images[w].planes = planes;
  81. images[w].bpp = bpp;
  82. images[w].data.resize(img_size);
  83. f->seek(img_offset);
  84. f->get_buffer(images[w].data.ptrw(), img_size);
  85. f->seek(prev_offset);
  86. }
  87. } else {
  88. Ref<Image> src_image;
  89. src_image.instantiate();
  90. err = ImageLoader::load_image(p_src_path, src_image);
  91. ERR_FAIL_COND_V(err != OK || src_image->is_empty(), ERR_CANT_OPEN);
  92. for (size_t i = 0; i < sizeof(icon_size) / sizeof(icon_size[0]); ++i) {
  93. int size = (icon_size[i] == 0) ? 256 : icon_size[i];
  94. Ref<Image> res_image = src_image->duplicate();
  95. ERR_FAIL_COND_V(res_image.is_null() || res_image->is_empty(), ERR_CANT_OPEN);
  96. res_image->resize(size, size, (Image::Interpolation)(p_preset->get("application/icon_interpolation").operator int()));
  97. images[icon_size[i]].data = res_image->save_png_to_buffer();
  98. }
  99. }
  100. uint16_t valid_icon_count = 0;
  101. for (size_t i = 0; i < sizeof(icon_size) / sizeof(icon_size[0]); ++i) {
  102. if (images.has(icon_size[i])) {
  103. valid_icon_count++;
  104. } else {
  105. int size = (icon_size[i] == 0) ? 256 : icon_size[i];
  106. add_message(EXPORT_MESSAGE_WARNING, TTR("Resources Modification"), vformat(TTR("Icon size \"%d\" is missing."), size));
  107. }
  108. }
  109. ERR_FAIL_COND_V(valid_icon_count == 0, ERR_CANT_OPEN);
  110. Ref<FileAccess> fw = FileAccess::open(p_dst_path, FileAccess::WRITE, &err);
  111. if (err != OK) {
  112. return err;
  113. }
  114. // Write ICONDIR.
  115. fw->store_16(0); // Reserved.
  116. fw->store_16(1); // Image type: 1 - ICO.
  117. fw->store_16(valid_icon_count); // Number of images.
  118. // Write ICONDIRENTRY.
  119. uint32_t img_offset = 6 + 16 * valid_icon_count;
  120. for (size_t i = 0; i < sizeof(icon_size) / sizeof(icon_size[0]); ++i) {
  121. if (images.has(icon_size[i])) {
  122. const IconData &di = images[icon_size[i]];
  123. fw->store_8(icon_size[i]); // Width in pixels.
  124. fw->store_8(icon_size[i]); // Height in pixels.
  125. fw->store_8(di.pal_colors); // Number of colors in the palette (0 - no palette).
  126. fw->store_8(0); // Reserved.
  127. fw->store_16(di.planes); // Number of color planes.
  128. fw->store_16(di.bpp); // Bits per pixel.
  129. fw->store_32(di.data.size()); // Image data size in bytes.
  130. fw->store_32(img_offset); // Image data offset.
  131. img_offset += di.data.size();
  132. }
  133. }
  134. // Write image data.
  135. for (size_t i = 0; i < sizeof(icon_size) / sizeof(icon_size[0]); ++i) {
  136. if (images.has(icon_size[i])) {
  137. const IconData &di = images[icon_size[i]];
  138. fw->store_buffer(di.data.ptr(), di.data.size());
  139. }
  140. }
  141. return OK;
  142. }
  143. Error EditorExportPlatformWindows::sign_shared_object(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path) {
  144. if (p_preset->get("codesign/enable")) {
  145. return _code_sign(p_preset, p_path);
  146. } else {
  147. return OK;
  148. }
  149. }
  150. Error EditorExportPlatformWindows::modify_template(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags) {
  151. if (p_preset->get("application/modify_resources")) {
  152. _rcedit_add_data(p_preset, p_path, false);
  153. String wrapper_path = p_path.get_basename() + ".console.exe";
  154. if (FileAccess::exists(wrapper_path)) {
  155. _rcedit_add_data(p_preset, wrapper_path, true);
  156. }
  157. }
  158. return OK;
  159. }
  160. Error EditorExportPlatformWindows::export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags) {
  161. String custom_debug = p_preset->get("custom_template/debug");
  162. String custom_release = p_preset->get("custom_template/release");
  163. String arch = p_preset->get("binary_format/architecture");
  164. String template_path = p_debug ? custom_debug : custom_release;
  165. template_path = template_path.strip_edges();
  166. if (template_path.is_empty()) {
  167. template_path = find_export_template(get_template_file_name(p_debug ? "debug" : "release", arch));
  168. }
  169. int export_angle = p_preset->get("application/export_angle");
  170. bool include_angle_libs = false;
  171. if (export_angle == 0) {
  172. include_angle_libs = (String(GLOBAL_GET("rendering/gl_compatibility/driver.windows")) == "opengl3_angle") && (String(GLOBAL_GET("rendering/renderer/rendering_method")) == "gl_compatibility");
  173. } else if (export_angle == 1) {
  174. include_angle_libs = true;
  175. }
  176. if (include_angle_libs) {
  177. Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
  178. if (da->file_exists(template_path.get_base_dir().path_join("libEGL." + arch + ".dll"))) {
  179. da->copy(template_path.get_base_dir().path_join("libEGL." + arch + ".dll"), p_path.get_base_dir().path_join("libEGL.dll"), get_chmod_flags());
  180. }
  181. if (da->file_exists(template_path.get_base_dir().path_join("libGLESv2." + arch + ".dll"))) {
  182. da->copy(template_path.get_base_dir().path_join("libGLESv2." + arch + ".dll"), p_path.get_base_dir().path_join("libGLESv2.dll"), get_chmod_flags());
  183. }
  184. }
  185. int export_d3d12 = p_preset->get("application/export_d3d12");
  186. bool agility_sdk_multiarch = p_preset->get("application/d3d12_agility_sdk_multiarch");
  187. bool include_dxil_libs = false;
  188. if (export_d3d12 == 0) {
  189. include_dxil_libs = (String(GLOBAL_GET("rendering/rendering_device/driver.windows")) == "d3d12") && (String(GLOBAL_GET("rendering/renderer/rendering_method")) != "gl_compatibility");
  190. } else if (export_d3d12 == 1) {
  191. include_dxil_libs = true;
  192. }
  193. if (include_dxil_libs) {
  194. Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
  195. if (da->file_exists(template_path.get_base_dir().path_join("dxil." + arch + ".dll"))) {
  196. da->make_dir_recursive(p_path.get_base_dir().path_join(arch));
  197. da->copy(template_path.get_base_dir().path_join("dxil." + arch + ".dll"), p_path.get_base_dir().path_join(arch).path_join("dxil.dll"), get_chmod_flags());
  198. }
  199. if (da->file_exists(template_path.get_base_dir().path_join("D3D12Core." + arch + ".dll"))) {
  200. if (agility_sdk_multiarch) {
  201. da->make_dir_recursive(p_path.get_base_dir().path_join(arch));
  202. da->copy(template_path.get_base_dir().path_join("D3D12Core." + arch + ".dll"), p_path.get_base_dir().path_join(arch).path_join("D3D12Core.dll"), get_chmod_flags());
  203. } else {
  204. da->copy(template_path.get_base_dir().path_join("D3D12Core." + arch + ".dll"), p_path.get_base_dir().path_join("D3D12Core.dll"), get_chmod_flags());
  205. }
  206. }
  207. if (da->file_exists(template_path.get_base_dir().path_join("d3d12SDKLayers." + arch + ".dll"))) {
  208. if (agility_sdk_multiarch) {
  209. da->make_dir_recursive(p_path.get_base_dir().path_join(arch));
  210. da->copy(template_path.get_base_dir().path_join("d3d12SDKLayers." + arch + ".dll"), p_path.get_base_dir().path_join(arch).path_join("d3d12SDKLayers.dll"), get_chmod_flags());
  211. } else {
  212. da->copy(template_path.get_base_dir().path_join("d3d12SDKLayers." + arch + ".dll"), p_path.get_base_dir().path_join("d3d12SDKLayers.dll"), get_chmod_flags());
  213. }
  214. }
  215. if (da->file_exists(template_path.get_base_dir().path_join("WinPixEventRuntime." + arch + ".dll"))) {
  216. da->copy(template_path.get_base_dir().path_join("WinPixEventRuntime." + arch + ".dll"), p_path.get_base_dir().path_join("WinPixEventRuntime.dll"), get_chmod_flags());
  217. }
  218. }
  219. bool export_as_zip = p_path.ends_with("zip");
  220. bool embedded = p_preset->get("binary_format/embed_pck");
  221. String pkg_name;
  222. if (String(ProjectSettings::get_singleton()->get("application/config/name")) != "") {
  223. pkg_name = String(ProjectSettings::get_singleton()->get("application/config/name"));
  224. } else {
  225. pkg_name = "Unnamed";
  226. }
  227. pkg_name = OS::get_singleton()->get_safe_dir_name(pkg_name);
  228. // Setup temp folder.
  229. String path = p_path;
  230. String tmp_dir_path = EditorPaths::get_singleton()->get_cache_dir().path_join(pkg_name);
  231. Ref<DirAccess> tmp_app_dir = DirAccess::create_for_path(tmp_dir_path);
  232. if (export_as_zip) {
  233. if (tmp_app_dir.is_null()) {
  234. add_message(EXPORT_MESSAGE_ERROR, TTR("Prepare Templates"), vformat(TTR("Could not create and open the directory: \"%s\""), tmp_dir_path));
  235. return ERR_CANT_CREATE;
  236. }
  237. if (DirAccess::exists(tmp_dir_path)) {
  238. if (tmp_app_dir->change_dir(tmp_dir_path) == OK) {
  239. tmp_app_dir->erase_contents_recursive();
  240. }
  241. }
  242. tmp_app_dir->make_dir_recursive(tmp_dir_path);
  243. path = tmp_dir_path.path_join(p_path.get_file().get_basename() + ".exe");
  244. }
  245. // Export project.
  246. String pck_path = path;
  247. if (embedded) {
  248. pck_path = pck_path.get_basename() + ".tmp";
  249. }
  250. Error err = EditorExportPlatformPC::export_project(p_preset, p_debug, pck_path, p_flags);
  251. if (err != OK) {
  252. // Message is supplied by the subroutine method.
  253. return err;
  254. }
  255. if (p_preset->get("codesign/enable")) {
  256. _code_sign(p_preset, pck_path);
  257. String wrapper_path = p_path.get_basename() + ".console.exe";
  258. if (FileAccess::exists(wrapper_path)) {
  259. _code_sign(p_preset, wrapper_path);
  260. }
  261. }
  262. if (embedded) {
  263. Ref<DirAccess> tmp_dir = DirAccess::create_for_path(p_path.get_base_dir());
  264. err = tmp_dir->rename(pck_path, p_path);
  265. if (err != OK) {
  266. add_message(EXPORT_MESSAGE_ERROR, TTR("PCK Embedding"), vformat(TTR("Failed to rename temporary file \"%s\"."), pck_path));
  267. }
  268. }
  269. // ZIP project.
  270. if (export_as_zip) {
  271. if (FileAccess::exists(p_path)) {
  272. OS::get_singleton()->move_to_trash(p_path);
  273. }
  274. Ref<FileAccess> io_fa_dst;
  275. zlib_filefunc_def io_dst = zipio_create_io(&io_fa_dst);
  276. zipFile zip = zipOpen2(p_path.utf8().get_data(), APPEND_STATUS_CREATE, nullptr, &io_dst);
  277. zip_folder_recursive(zip, tmp_dir_path, "", pkg_name);
  278. zipClose(zip, nullptr);
  279. if (tmp_app_dir->change_dir(tmp_dir_path) == OK) {
  280. tmp_app_dir->erase_contents_recursive();
  281. tmp_app_dir->change_dir("..");
  282. tmp_app_dir->remove(pkg_name);
  283. }
  284. }
  285. return err;
  286. }
  287. String EditorExportPlatformWindows::get_template_file_name(const String &p_target, const String &p_arch) const {
  288. return "windows_" + p_target + "_" + p_arch + ".exe";
  289. }
  290. List<String> EditorExportPlatformWindows::get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const {
  291. List<String> list;
  292. list.push_back("exe");
  293. list.push_back("zip");
  294. return list;
  295. }
  296. String EditorExportPlatformWindows::get_export_option_warning(const EditorExportPreset *p_preset, const StringName &p_name) const {
  297. if (p_preset) {
  298. if (p_name == "application/icon") {
  299. String icon_path = ProjectSettings::get_singleton()->globalize_path(p_preset->get("application/icon"));
  300. if (!icon_path.is_empty() && !FileAccess::exists(icon_path)) {
  301. return TTR("Invalid icon path.");
  302. }
  303. } else if (p_name == "application/file_version") {
  304. String file_version = p_preset->get("application/file_version");
  305. if (!file_version.is_empty()) {
  306. PackedStringArray version_array = file_version.split(".", false);
  307. if (version_array.size() != 4 || !version_array[0].is_valid_int() ||
  308. !version_array[1].is_valid_int() || !version_array[2].is_valid_int() ||
  309. !version_array[3].is_valid_int() || file_version.find("-") > -1) {
  310. return TTR("Invalid file version.");
  311. }
  312. }
  313. } else if (p_name == "application/product_version") {
  314. String product_version = p_preset->get("application/product_version");
  315. if (!product_version.is_empty()) {
  316. PackedStringArray version_array = product_version.split(".", false);
  317. if (version_array.size() != 4 || !version_array[0].is_valid_int() ||
  318. !version_array[1].is_valid_int() || !version_array[2].is_valid_int() ||
  319. !version_array[3].is_valid_int() || product_version.find("-") > -1) {
  320. return TTR("Invalid product version.");
  321. }
  322. }
  323. }
  324. }
  325. return EditorExportPlatformPC::get_export_option_warning(p_preset, p_name);
  326. }
  327. bool EditorExportPlatformWindows::get_export_option_visibility(const EditorExportPreset *p_preset, const String &p_option) const {
  328. // This option is not supported by "osslsigncode", used on non-Windows host.
  329. if (!OS::get_singleton()->has_feature("windows") && p_option == "codesign/identity_type") {
  330. return false;
  331. }
  332. // Hide codesign.
  333. bool codesign = p_preset->get("codesign/enable");
  334. if (!codesign && p_option != "codesign/enable" && p_option.begins_with("codesign/")) {
  335. return false;
  336. }
  337. // Hide resources.
  338. bool mod_res = p_preset->get("application/modify_resources");
  339. if (!mod_res && p_option != "application/modify_resources" && p_option != "application/export_angle" && p_option != "application/export_d3d12" && p_option != "application/d3d12_agility_sdk_multiarch" && p_option.begins_with("application/")) {
  340. return false;
  341. }
  342. // Hide SSH options.
  343. bool ssh = p_preset->get("ssh_remote_deploy/enabled");
  344. if (!ssh && p_option != "ssh_remote_deploy/enabled" && p_option.begins_with("ssh_remote_deploy/")) {
  345. return false;
  346. }
  347. return true;
  348. }
  349. void EditorExportPlatformWindows::get_export_options(List<ExportOption> *r_options) const {
  350. EditorExportPlatformPC::get_export_options(r_options);
  351. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "binary_format/architecture", PROPERTY_HINT_ENUM, "x86_64,x86_32,arm64"), "x86_64"));
  352. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/enable"), false, true));
  353. 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)", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_SECRET), 0));
  354. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "codesign/identity", PROPERTY_HINT_GLOBAL_FILE, "*.pfx,*.p12", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_SECRET), ""));
  355. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "codesign/password", PROPERTY_HINT_PASSWORD, "", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_SECRET), ""));
  356. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/timestamp"), true));
  357. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "codesign/timestamp_server_url"), ""));
  358. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "codesign/digest_algorithm", PROPERTY_HINT_ENUM, "SHA1,SHA256"), 1));
  359. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "codesign/description"), ""));
  360. r_options->push_back(ExportOption(PropertyInfo(Variant::PACKED_STRING_ARRAY, "codesign/custom_options"), PackedStringArray()));
  361. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "application/modify_resources"), true, true));
  362. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/icon", PROPERTY_HINT_FILE, "*.ico,*.png,*.webp,*.svg"), "", false, true));
  363. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/console_wrapper_icon", PROPERTY_HINT_FILE, "*.ico,*.png,*.webp,*.svg"), ""));
  364. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "application/icon_interpolation", PROPERTY_HINT_ENUM, "Nearest neighbor,Bilinear,Cubic,Trilinear,Lanczos"), 4));
  365. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/file_version", PROPERTY_HINT_PLACEHOLDER_TEXT, "Leave empty to use project version"), ""));
  366. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/product_version", PROPERTY_HINT_PLACEHOLDER_TEXT, "Leave empty to use project version"), ""));
  367. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/company_name", PROPERTY_HINT_PLACEHOLDER_TEXT, "Company Name"), ""));
  368. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/product_name", PROPERTY_HINT_PLACEHOLDER_TEXT, "Game Name"), ""));
  369. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/file_description"), ""));
  370. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/copyright"), ""));
  371. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/trademarks"), ""));
  372. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "application/export_angle", PROPERTY_HINT_ENUM, "Auto,Yes,No"), 0, true));
  373. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "application/export_d3d12", PROPERTY_HINT_ENUM, "Auto,Yes,No"), 0, true));
  374. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "application/d3d12_agility_sdk_multiarch"), true, true));
  375. String run_script = "Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'\n"
  376. "$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'\n"
  377. "$trigger = New-ScheduledTaskTrigger -Once -At 00:00\n"
  378. "$settings = New-ScheduledTaskSettingsSet\n"
  379. "$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings\n"
  380. "Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true\n"
  381. "Start-ScheduledTask -TaskName godot_remote_debug\n"
  382. "while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }\n"
  383. "Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue";
  384. String cleanup_script = "Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue\n"
  385. "Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue\n"
  386. "Remove-Item -Recurse -Force '{temp_dir}'";
  387. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "ssh_remote_deploy/enabled"), false, true));
  388. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "ssh_remote_deploy/host"), "user@host_ip"));
  389. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "ssh_remote_deploy/port"), "22"));
  390. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "ssh_remote_deploy/extra_args_ssh", PROPERTY_HINT_MULTILINE_TEXT), ""));
  391. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "ssh_remote_deploy/extra_args_scp", PROPERTY_HINT_MULTILINE_TEXT), ""));
  392. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "ssh_remote_deploy/run_script", PROPERTY_HINT_MULTILINE_TEXT), run_script));
  393. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "ssh_remote_deploy/cleanup_script", PROPERTY_HINT_MULTILINE_TEXT), cleanup_script));
  394. }
  395. Error EditorExportPlatformWindows::_rcedit_add_data(const Ref<EditorExportPreset> &p_preset, const String &p_path, bool p_console_icon) {
  396. String rcedit_path = EDITOR_GET("export/windows/rcedit");
  397. if (rcedit_path != String() && !FileAccess::exists(rcedit_path)) {
  398. add_message(EXPORT_MESSAGE_WARNING, TTR("Resources Modification"), vformat(TTR("Could not find rcedit executable at \"%s\"."), rcedit_path));
  399. return ERR_FILE_NOT_FOUND;
  400. }
  401. if (rcedit_path == String()) {
  402. rcedit_path = "rcedit"; // try to run rcedit from PATH
  403. }
  404. #ifndef WINDOWS_ENABLED
  405. // On non-Windows we need WINE to run rcedit
  406. String wine_path = EDITOR_GET("export/windows/wine");
  407. if (!wine_path.is_empty() && !FileAccess::exists(wine_path)) {
  408. add_message(EXPORT_MESSAGE_WARNING, TTR("Resources Modification"), vformat(TTR("Could not find wine executable at \"%s\"."), wine_path));
  409. return ERR_FILE_NOT_FOUND;
  410. }
  411. if (wine_path.is_empty()) {
  412. wine_path = "wine"; // try to run wine from PATH
  413. }
  414. #endif
  415. String icon_path;
  416. if (p_preset->get("application/icon") != "") {
  417. icon_path = p_preset->get("application/icon");
  418. } else if (GLOBAL_GET("application/config/windows_native_icon") != "") {
  419. icon_path = GLOBAL_GET("application/config/windows_native_icon");
  420. } else {
  421. icon_path = GLOBAL_GET("application/config/icon");
  422. }
  423. icon_path = ProjectSettings::get_singleton()->globalize_path(icon_path);
  424. if (p_console_icon) {
  425. String console_icon_path = ProjectSettings::get_singleton()->globalize_path(p_preset->get("application/console_wrapper_icon"));
  426. if (!console_icon_path.is_empty() && FileAccess::exists(console_icon_path)) {
  427. icon_path = console_icon_path;
  428. }
  429. }
  430. String tmp_icon_path = EditorPaths::get_singleton()->get_cache_dir().path_join("_rcedit.ico");
  431. if (!icon_path.is_empty()) {
  432. if (_process_icon(p_preset, icon_path, tmp_icon_path) != OK) {
  433. add_message(EXPORT_MESSAGE_WARNING, TTR("Resources Modification"), vformat(TTR("Invalid icon file \"%s\"."), icon_path));
  434. icon_path = String();
  435. }
  436. }
  437. String file_verion = p_preset->get_version("application/file_version", true);
  438. String product_version = p_preset->get_version("application/product_version", true);
  439. String company_name = p_preset->get("application/company_name");
  440. String product_name = p_preset->get("application/product_name");
  441. String file_description = p_preset->get("application/file_description");
  442. String copyright = p_preset->get("application/copyright");
  443. String trademarks = p_preset->get("application/trademarks");
  444. String comments = p_preset->get("application/comments");
  445. List<String> args;
  446. args.push_back(p_path);
  447. if (!icon_path.is_empty()) {
  448. args.push_back("--set-icon");
  449. args.push_back(tmp_icon_path);
  450. }
  451. if (!file_verion.is_empty()) {
  452. args.push_back("--set-file-version");
  453. args.push_back(file_verion);
  454. }
  455. if (!product_version.is_empty()) {
  456. args.push_back("--set-product-version");
  457. args.push_back(product_version);
  458. }
  459. if (!company_name.is_empty()) {
  460. args.push_back("--set-version-string");
  461. args.push_back("CompanyName");
  462. args.push_back(company_name);
  463. }
  464. if (!product_name.is_empty()) {
  465. args.push_back("--set-version-string");
  466. args.push_back("ProductName");
  467. args.push_back(product_name);
  468. }
  469. if (!file_description.is_empty()) {
  470. args.push_back("--set-version-string");
  471. args.push_back("FileDescription");
  472. args.push_back(file_description);
  473. }
  474. if (!copyright.is_empty()) {
  475. args.push_back("--set-version-string");
  476. args.push_back("LegalCopyright");
  477. args.push_back(copyright);
  478. }
  479. if (!trademarks.is_empty()) {
  480. args.push_back("--set-version-string");
  481. args.push_back("LegalTrademarks");
  482. args.push_back(trademarks);
  483. }
  484. #ifndef WINDOWS_ENABLED
  485. // On non-Windows we need WINE to run rcedit
  486. args.push_front(rcedit_path);
  487. rcedit_path = wine_path;
  488. #endif
  489. String str;
  490. Error err = OS::get_singleton()->execute(rcedit_path, args, &str, nullptr, true);
  491. if (FileAccess::exists(tmp_icon_path)) {
  492. DirAccess::remove_file_or_error(tmp_icon_path);
  493. }
  494. if (err != OK || (str.find("not found") != -1) || (str.find("not recognized") != -1)) {
  495. 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."));
  496. return err;
  497. }
  498. print_line("rcedit (" + p_path + "): " + str);
  499. if (str.find("Fatal error") != -1) {
  500. add_message(EXPORT_MESSAGE_WARNING, TTR("Resources Modification"), vformat(TTR("rcedit failed to modify executable: %s."), str));
  501. return FAILED;
  502. }
  503. return OK;
  504. }
  505. Error EditorExportPlatformWindows::_code_sign(const Ref<EditorExportPreset> &p_preset, const String &p_path) {
  506. List<String> args;
  507. #ifdef WINDOWS_ENABLED
  508. String signtool_path = EDITOR_GET("export/windows/signtool");
  509. if (!signtool_path.is_empty() && !FileAccess::exists(signtool_path)) {
  510. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), vformat(TTR("Could not find signtool executable at \"%s\"."), signtool_path));
  511. return ERR_FILE_NOT_FOUND;
  512. }
  513. if (signtool_path.is_empty()) {
  514. signtool_path = "signtool"; // try to run signtool from PATH
  515. }
  516. #else
  517. String signtool_path = EDITOR_GET("export/windows/osslsigncode");
  518. if (!signtool_path.is_empty() && !FileAccess::exists(signtool_path)) {
  519. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), vformat(TTR("Could not find osslsigncode executable at \"%s\"."), signtool_path));
  520. return ERR_FILE_NOT_FOUND;
  521. }
  522. if (signtool_path.is_empty()) {
  523. signtool_path = "osslsigncode"; // try to run signtool from PATH
  524. }
  525. #endif
  526. args.push_back("sign");
  527. //identity
  528. #ifdef WINDOWS_ENABLED
  529. int id_type = p_preset->get_or_env("codesign/identity_type", ENV_WIN_CODESIGN_ID_TYPE);
  530. if (id_type == 0) { //auto select
  531. args.push_back("/a");
  532. } else if (id_type == 1) { //pkcs12
  533. if (p_preset->get_or_env("codesign/identity", ENV_WIN_CODESIGN_ID) != "") {
  534. args.push_back("/f");
  535. args.push_back(p_preset->get_or_env("codesign/identity", ENV_WIN_CODESIGN_ID));
  536. } else {
  537. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("No identity found."));
  538. return FAILED;
  539. }
  540. } else if (id_type == 2) { //Windows certificate store
  541. if (p_preset->get_or_env("codesign/identity", ENV_WIN_CODESIGN_ID) != "") {
  542. args.push_back("/sha1");
  543. args.push_back(p_preset->get_or_env("codesign/identity", ENV_WIN_CODESIGN_ID));
  544. } else {
  545. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("No identity found."));
  546. return FAILED;
  547. }
  548. } else {
  549. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("Invalid identity type."));
  550. return FAILED;
  551. }
  552. #else
  553. int id_type = 1;
  554. if (p_preset->get_or_env("codesign/identity", ENV_WIN_CODESIGN_ID) != "") {
  555. args.push_back("-pkcs12");
  556. args.push_back(p_preset->get_or_env("codesign/identity", ENV_WIN_CODESIGN_ID));
  557. } else {
  558. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("No identity found."));
  559. return FAILED;
  560. }
  561. #endif
  562. //password
  563. if ((id_type == 1) && (p_preset->get_or_env("codesign/password", ENV_WIN_CODESIGN_PASS) != "")) {
  564. #ifdef WINDOWS_ENABLED
  565. args.push_back("/p");
  566. #else
  567. args.push_back("-pass");
  568. #endif
  569. args.push_back(p_preset->get_or_env("codesign/password", ENV_WIN_CODESIGN_PASS));
  570. }
  571. //timestamp
  572. if (p_preset->get("codesign/timestamp")) {
  573. if (p_preset->get("codesign/timestamp_server") != "") {
  574. #ifdef WINDOWS_ENABLED
  575. args.push_back("/tr");
  576. args.push_back(p_preset->get("codesign/timestamp_server_url"));
  577. args.push_back("/td");
  578. if ((int)p_preset->get("codesign/digest_algorithm") == 0) {
  579. args.push_back("sha1");
  580. } else {
  581. args.push_back("sha256");
  582. }
  583. #else
  584. args.push_back("-ts");
  585. args.push_back(p_preset->get("codesign/timestamp_server_url"));
  586. #endif
  587. } else {
  588. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("Invalid timestamp server."));
  589. return FAILED;
  590. }
  591. }
  592. //digest
  593. #ifdef WINDOWS_ENABLED
  594. args.push_back("/fd");
  595. #else
  596. args.push_back("-h");
  597. #endif
  598. if ((int)p_preset->get("codesign/digest_algorithm") == 0) {
  599. args.push_back("sha1");
  600. } else {
  601. args.push_back("sha256");
  602. }
  603. //description
  604. if (p_preset->get("codesign/description") != "") {
  605. #ifdef WINDOWS_ENABLED
  606. args.push_back("/d");
  607. #else
  608. args.push_back("-n");
  609. #endif
  610. args.push_back(p_preset->get("codesign/description"));
  611. }
  612. //user options
  613. PackedStringArray user_args = p_preset->get("codesign/custom_options");
  614. for (int i = 0; i < user_args.size(); i++) {
  615. String user_arg = user_args[i].strip_edges();
  616. if (!user_arg.is_empty()) {
  617. args.push_back(user_arg);
  618. }
  619. }
  620. #ifndef WINDOWS_ENABLED
  621. args.push_back("-in");
  622. #endif
  623. args.push_back(p_path);
  624. #ifndef WINDOWS_ENABLED
  625. args.push_back("-out");
  626. args.push_back(p_path + "_signed");
  627. #endif
  628. String str;
  629. Error err = OS::get_singleton()->execute(signtool_path, args, &str, nullptr, true);
  630. if (err != OK || (str.find("not found") != -1) || (str.find("not recognized") != -1)) {
  631. #ifdef WINDOWS_ENABLED
  632. 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."));
  633. #else
  634. 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."));
  635. #endif
  636. return err;
  637. }
  638. print_line("codesign (" + p_path + "): " + str);
  639. #ifndef WINDOWS_ENABLED
  640. if (str.find("SignTool Error") != -1) {
  641. #else
  642. if (str.find("Failed") != -1) {
  643. #endif
  644. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), vformat(TTR("Signtool failed to sign executable: %s."), str));
  645. return FAILED;
  646. }
  647. #ifndef WINDOWS_ENABLED
  648. Ref<DirAccess> tmp_dir = DirAccess::create_for_path(p_path.get_base_dir());
  649. err = tmp_dir->remove(p_path);
  650. if (err != OK) {
  651. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), vformat(TTR("Failed to remove temporary file \"%s\"."), p_path));
  652. return err;
  653. }
  654. err = tmp_dir->rename(p_path + "_signed", p_path);
  655. if (err != OK) {
  656. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), vformat(TTR("Failed to rename temporary file \"%s\"."), p_path + "_signed"));
  657. return err;
  658. }
  659. #endif
  660. return OK;
  661. }
  662. bool EditorExportPlatformWindows::has_valid_export_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates, bool p_debug) const {
  663. String err = "";
  664. bool valid = EditorExportPlatformPC::has_valid_export_configuration(p_preset, err, r_missing_templates, p_debug);
  665. String rcedit_path = EDITOR_GET("export/windows/rcedit");
  666. if (p_preset->get("application/modify_resources") && rcedit_path.is_empty()) {
  667. err += TTR("The rcedit tool must be configured in the Editor Settings (Export > Windows > rcedit) to change the icon or app information data.") + "\n";
  668. }
  669. if (!err.is_empty()) {
  670. r_error = err;
  671. }
  672. return valid;
  673. }
  674. bool EditorExportPlatformWindows::has_valid_project_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error) const {
  675. String err = "";
  676. bool valid = true;
  677. List<ExportOption> options;
  678. get_export_options(&options);
  679. for (const EditorExportPlatform::ExportOption &E : options) {
  680. if (get_export_option_visibility(p_preset.ptr(), E.option.name)) {
  681. String warn = get_export_option_warning(p_preset.ptr(), E.option.name);
  682. if (!warn.is_empty()) {
  683. err += warn + "\n";
  684. if (E.required) {
  685. valid = false;
  686. }
  687. }
  688. }
  689. }
  690. if (!err.is_empty()) {
  691. r_error = err;
  692. }
  693. return valid;
  694. }
  695. Error EditorExportPlatformWindows::fixup_embedded_pck(const String &p_path, int64_t p_embedded_start, int64_t p_embedded_size) {
  696. // Patch the header of the "pck" section in the PE file so that it corresponds to the embedded data
  697. if (p_embedded_size + p_embedded_start >= 0x100000000) { // Check for total executable size
  698. add_message(EXPORT_MESSAGE_ERROR, TTR("PCK Embedding"), TTR("Windows executables cannot be >= 4 GiB."));
  699. return ERR_INVALID_DATA;
  700. }
  701. Ref<FileAccess> f = FileAccess::open(p_path, FileAccess::READ_WRITE);
  702. if (f.is_null()) {
  703. add_message(EXPORT_MESSAGE_ERROR, TTR("PCK Embedding"), vformat(TTR("Failed to open executable file \"%s\"."), p_path));
  704. return ERR_CANT_OPEN;
  705. }
  706. // Jump to the PE header and check the magic number
  707. {
  708. f->seek(0x3c);
  709. uint32_t pe_pos = f->get_32();
  710. f->seek(pe_pos);
  711. uint32_t magic = f->get_32();
  712. if (magic != 0x00004550) {
  713. add_message(EXPORT_MESSAGE_ERROR, TTR("PCK Embedding"), TTR("Executable file header corrupted."));
  714. return ERR_FILE_CORRUPT;
  715. }
  716. }
  717. // Process header
  718. int num_sections;
  719. {
  720. int64_t header_pos = f->get_position();
  721. f->seek(header_pos + 2);
  722. num_sections = f->get_16();
  723. f->seek(header_pos + 16);
  724. uint16_t opt_header_size = f->get_16();
  725. // Skip rest of header + optional header to go to the section headers
  726. f->seek(f->get_position() + 2 + opt_header_size);
  727. }
  728. // Search for the "pck" section
  729. int64_t section_table_pos = f->get_position();
  730. bool found = false;
  731. for (int i = 0; i < num_sections; ++i) {
  732. int64_t section_header_pos = section_table_pos + i * 40;
  733. f->seek(section_header_pos);
  734. uint8_t section_name[9];
  735. f->get_buffer(section_name, 8);
  736. section_name[8] = '\0';
  737. if (strcmp((char *)section_name, "pck") == 0) {
  738. // "pck" section found, let's patch!
  739. // Set virtual size to a little to avoid it taking memory (zero would give issues)
  740. f->seek(section_header_pos + 8);
  741. f->store_32(8);
  742. f->seek(section_header_pos + 16);
  743. f->store_32(p_embedded_size);
  744. f->seek(section_header_pos + 20);
  745. f->store_32(p_embedded_start);
  746. found = true;
  747. break;
  748. }
  749. }
  750. if (!found) {
  751. add_message(EXPORT_MESSAGE_ERROR, TTR("PCK Embedding"), TTR("Executable \"pck\" section not found."));
  752. return ERR_FILE_CORRUPT;
  753. }
  754. return OK;
  755. }
  756. Ref<Texture2D> EditorExportPlatformWindows::get_run_icon() const {
  757. return run_icon;
  758. }
  759. bool EditorExportPlatformWindows::poll_export() {
  760. Ref<EditorExportPreset> preset;
  761. for (int i = 0; i < EditorExport::get_singleton()->get_export_preset_count(); i++) {
  762. Ref<EditorExportPreset> ep = EditorExport::get_singleton()->get_export_preset(i);
  763. if (ep->is_runnable() && ep->get_platform() == this) {
  764. preset = ep;
  765. break;
  766. }
  767. }
  768. int prev = menu_options;
  769. menu_options = (preset.is_valid() && preset->get("ssh_remote_deploy/enabled").operator bool());
  770. if (ssh_pid != 0 || !cleanup_commands.is_empty()) {
  771. if (menu_options == 0) {
  772. cleanup();
  773. } else {
  774. menu_options += 1;
  775. }
  776. }
  777. return menu_options != prev;
  778. }
  779. Ref<ImageTexture> EditorExportPlatformWindows::get_option_icon(int p_index) const {
  780. return p_index == 1 ? stop_icon : EditorExportPlatform::get_option_icon(p_index);
  781. }
  782. int EditorExportPlatformWindows::get_options_count() const {
  783. return menu_options;
  784. }
  785. String EditorExportPlatformWindows::get_option_label(int p_index) const {
  786. return (p_index) ? TTR("Stop and uninstall") : TTR("Run on remote Windows system");
  787. }
  788. String EditorExportPlatformWindows::get_option_tooltip(int p_index) const {
  789. return (p_index) ? TTR("Stop and uninstall running project from the remote system") : TTR("Run exported project on remote Windows system");
  790. }
  791. void EditorExportPlatformWindows::cleanup() {
  792. if (ssh_pid != 0 && OS::get_singleton()->is_process_running(ssh_pid)) {
  793. print_line("Terminating connection...");
  794. OS::get_singleton()->kill(ssh_pid);
  795. OS::get_singleton()->delay_usec(1000);
  796. }
  797. if (!cleanup_commands.is_empty()) {
  798. print_line("Stopping and deleting previous version...");
  799. for (const SSHCleanupCommand &cmd : cleanup_commands) {
  800. if (cmd.wait) {
  801. ssh_run_on_remote(cmd.host, cmd.port, cmd.ssh_args, cmd.cmd_args);
  802. } else {
  803. ssh_run_on_remote_no_wait(cmd.host, cmd.port, cmd.ssh_args, cmd.cmd_args);
  804. }
  805. }
  806. }
  807. ssh_pid = 0;
  808. cleanup_commands.clear();
  809. }
  810. Error EditorExportPlatformWindows::run(const Ref<EditorExportPreset> &p_preset, int p_device, int p_debug_flags) {
  811. cleanup();
  812. if (p_device) { // Stop command, cleanup only.
  813. return OK;
  814. }
  815. EditorProgress ep("run", TTR("Running..."), 5);
  816. const String dest = EditorPaths::get_singleton()->get_cache_dir().path_join("windows");
  817. Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
  818. if (!da->dir_exists(dest)) {
  819. Error err = da->make_dir_recursive(dest);
  820. if (err != OK) {
  821. EditorNode::get_singleton()->show_warning(TTR("Could not create temp directory:") + "\n" + dest);
  822. return err;
  823. }
  824. }
  825. String host = p_preset->get("ssh_remote_deploy/host").operator String();
  826. String port = p_preset->get("ssh_remote_deploy/port").operator String();
  827. if (port.is_empty()) {
  828. port = "22";
  829. }
  830. Vector<String> extra_args_ssh = p_preset->get("ssh_remote_deploy/extra_args_ssh").operator String().split(" ", false);
  831. Vector<String> extra_args_scp = p_preset->get("ssh_remote_deploy/extra_args_scp").operator String().split(" ", false);
  832. const String basepath = dest.path_join("tmp_windows_export");
  833. #define CLEANUP_AND_RETURN(m_err) \
  834. { \
  835. if (da->file_exists(basepath + ".zip")) { \
  836. da->remove(basepath + ".zip"); \
  837. } \
  838. if (da->file_exists(basepath + "_start.ps1")) { \
  839. da->remove(basepath + "_start.ps1"); \
  840. } \
  841. if (da->file_exists(basepath + "_clean.ps1")) { \
  842. da->remove(basepath + "_clean.ps1"); \
  843. } \
  844. return m_err; \
  845. } \
  846. ((void)0)
  847. if (ep.step(TTR("Exporting project..."), 1)) {
  848. return ERR_SKIP;
  849. }
  850. Error err = export_project(p_preset, true, basepath + ".zip", p_debug_flags);
  851. if (err != OK) {
  852. DirAccess::remove_file_or_error(basepath + ".zip");
  853. return err;
  854. }
  855. String cmd_args;
  856. {
  857. Vector<String> cmd_args_list;
  858. gen_debug_flags(cmd_args_list, p_debug_flags);
  859. for (int i = 0; i < cmd_args_list.size(); i++) {
  860. if (i != 0) {
  861. cmd_args += " ";
  862. }
  863. cmd_args += cmd_args_list[i];
  864. }
  865. }
  866. const bool use_remote = (p_debug_flags & DEBUG_FLAG_REMOTE_DEBUG) || (p_debug_flags & DEBUG_FLAG_DUMB_CLIENT);
  867. int dbg_port = EditorSettings::get_singleton()->get("network/debug/remote_port");
  868. print_line("Creating temporary directory...");
  869. ep.step(TTR("Creating temporary directory..."), 2);
  870. String temp_dir;
  871. #ifndef WINDOWS_ENABLED
  872. 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);
  873. #else
  874. 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);
  875. #endif
  876. if (err != OK || temp_dir.is_empty()) {
  877. CLEANUP_AND_RETURN(err);
  878. }
  879. print_line("Uploading archive...");
  880. ep.step(TTR("Uploading archive..."), 3);
  881. err = ssh_push_to_remote(host, port, extra_args_scp, basepath + ".zip", temp_dir);
  882. if (err != OK) {
  883. CLEANUP_AND_RETURN(err);
  884. }
  885. if (cmd_args.is_empty()) {
  886. cmd_args = " ";
  887. }
  888. {
  889. String run_script = p_preset->get("ssh_remote_deploy/run_script");
  890. run_script = run_script.replace("{temp_dir}", temp_dir);
  891. run_script = run_script.replace("{archive_name}", basepath.get_file() + ".zip");
  892. run_script = run_script.replace("{exe_name}", basepath.get_file() + ".exe");
  893. run_script = run_script.replace("{cmd_args}", cmd_args);
  894. Ref<FileAccess> f = FileAccess::open(basepath + "_start.ps1", FileAccess::WRITE);
  895. if (f.is_null()) {
  896. CLEANUP_AND_RETURN(err);
  897. }
  898. f->store_string(run_script);
  899. }
  900. {
  901. String clean_script = p_preset->get("ssh_remote_deploy/cleanup_script");
  902. clean_script = clean_script.replace("{temp_dir}", temp_dir);
  903. clean_script = clean_script.replace("{archive_name}", basepath.get_file() + ".zip");
  904. clean_script = clean_script.replace("{exe_name}", basepath.get_file() + ".exe");
  905. clean_script = clean_script.replace("{cmd_args}", cmd_args);
  906. Ref<FileAccess> f = FileAccess::open(basepath + "_clean.ps1", FileAccess::WRITE);
  907. if (f.is_null()) {
  908. CLEANUP_AND_RETURN(err);
  909. }
  910. f->store_string(clean_script);
  911. }
  912. print_line("Uploading scripts...");
  913. ep.step(TTR("Uploading scripts..."), 4);
  914. err = ssh_push_to_remote(host, port, extra_args_scp, basepath + "_start.ps1", temp_dir);
  915. if (err != OK) {
  916. CLEANUP_AND_RETURN(err);
  917. }
  918. err = ssh_push_to_remote(host, port, extra_args_scp, basepath + "_clean.ps1", temp_dir);
  919. if (err != OK) {
  920. CLEANUP_AND_RETURN(err);
  921. }
  922. print_line("Starting project...");
  923. ep.step(TTR("Starting project..."), 5);
  924. 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);
  925. if (err != OK) {
  926. CLEANUP_AND_RETURN(err);
  927. }
  928. cleanup_commands.clear();
  929. cleanup_commands.push_back(SSHCleanupCommand(host, port, extra_args_ssh, vformat("powershell -file \"%s\\%s\"", temp_dir, basepath.get_file() + "_clean.ps1")));
  930. print_line("Project started.");
  931. CLEANUP_AND_RETURN(OK);
  932. #undef CLEANUP_AND_RETURN
  933. }
  934. EditorExportPlatformWindows::EditorExportPlatformWindows() {
  935. if (EditorNode::get_singleton()) {
  936. #ifdef MODULE_SVG_ENABLED
  937. Ref<Image> img = memnew(Image);
  938. const bool upsample = !Math::is_equal_approx(Math::round(EDSCALE), EDSCALE);
  939. ImageLoaderSVG::create_image_from_string(img, _windows_logo_svg, EDSCALE, upsample, false);
  940. set_logo(ImageTexture::create_from_image(img));
  941. ImageLoaderSVG::create_image_from_string(img, _windows_run_icon_svg, EDSCALE, upsample, false);
  942. run_icon = ImageTexture::create_from_image(img);
  943. #endif
  944. Ref<Theme> theme = EditorNode::get_singleton()->get_editor_theme();
  945. if (theme.is_valid()) {
  946. stop_icon = theme->get_icon(SNAME("Stop"), EditorStringName(EditorIcons));
  947. } else {
  948. stop_icon.instantiate();
  949. }
  950. }
  951. }