export_plugin.cpp 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701
  1. /*************************************************************************/
  2. /* export_plugin.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  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 "codesign.h"
  32. #include "core/string/translation.h"
  33. #include "editor/editor_node.h"
  34. #include "editor/editor_paths.h"
  35. #include "modules/modules_enabled.gen.h" // For regex.
  36. void EditorExportPlatformMacOS::get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) const {
  37. if (p_preset->get("texture_format/s3tc")) {
  38. r_features->push_back("s3tc");
  39. }
  40. if (p_preset->get("texture_format/etc")) {
  41. r_features->push_back("etc");
  42. }
  43. if (p_preset->get("texture_format/etc2")) {
  44. r_features->push_back("etc2");
  45. }
  46. r_features->push_back(p_preset->get("binary_format/architecture"));
  47. }
  48. bool EditorExportPlatformMacOS::get_export_option_visibility(const String &p_option, const HashMap<StringName, Variant> &p_options) const {
  49. // These options are not supported by built-in codesign, used on non macOS host.
  50. if (!OS::get_singleton()->has_feature("macos")) {
  51. if (p_option == "codesign/identity" || p_option == "codesign/timestamp" || p_option == "codesign/hardened_runtime" || p_option == "codesign/custom_options" || p_option.begins_with("notarization/")) {
  52. return false;
  53. }
  54. }
  55. // These entitlements are required to run managed code, and are always enabled in Mono builds.
  56. if (Engine::get_singleton()->has_singleton("GodotSharp")) {
  57. if (p_option == "codesign/entitlements/allow_jit_code_execution" || p_option == "codesign/entitlements/allow_unsigned_executable_memory" || p_option == "codesign/entitlements/allow_dyld_environment_variables") {
  58. return false;
  59. }
  60. }
  61. return true;
  62. }
  63. void EditorExportPlatformMacOS::get_export_options(List<ExportOption> *r_options) {
  64. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "binary_format/architecture", PROPERTY_HINT_ENUM, "universal,x86_64,arm64", PROPERTY_USAGE_STORAGE), "universal"));
  65. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "custom_template/debug", PROPERTY_HINT_GLOBAL_FILE, "*.zip"), ""));
  66. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "custom_template/release", PROPERTY_HINT_GLOBAL_FILE, "*.zip"), ""));
  67. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "debug/export_console_script", PROPERTY_HINT_ENUM, "No,Debug Only,Debug and Release"), 1));
  68. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/icon", PROPERTY_HINT_FILE, "*.png,*.icns"), ""));
  69. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/bundle_identifier", PROPERTY_HINT_PLACEHOLDER_TEXT, "com.example.game"), ""));
  70. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/signature"), ""));
  71. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/app_category", PROPERTY_HINT_ENUM, "Business,Developer-tools,Education,Entertainment,Finance,Games,Action-games,Adventure-games,Arcade-games,Board-games,Card-games,Casino-games,Dice-games,Educational-games,Family-games,Kids-games,Music-games,Puzzle-games,Racing-games,Role-playing-games,Simulation-games,Sports-games,Strategy-games,Trivia-games,Word-games,Graphics-design,Healthcare-fitness,Lifestyle,Medical,Music,News,Photography,Productivity,Reference,Social-networking,Sports,Travel,Utilities,Video,Weather"), "Games"));
  72. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/short_version"), "1.0"));
  73. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/version"), "1.0"));
  74. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/copyright"), ""));
  75. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "application/copyright_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  76. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "display/high_res"), false));
  77. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/microphone_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use the microphone"), ""));
  78. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/microphone_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  79. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/camera_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use the camera"), ""));
  80. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/camera_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  81. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/location_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use the location information"), ""));
  82. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/location_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  83. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/address_book_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use the address book"), ""));
  84. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/address_book_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  85. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/calendar_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use the calendar"), ""));
  86. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/calendar_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  87. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/photos_library_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use the photo library"), ""));
  88. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/photos_library_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  89. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/desktop_folder_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use Desktop folder"), ""));
  90. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/desktop_folder_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  91. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/documents_folder_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use Documents folder"), ""));
  92. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/documents_folder_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  93. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/downloads_folder_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use Downloads folder"), ""));
  94. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/downloads_folder_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  95. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/network_volumes_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use network volumes"), ""));
  96. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/network_volumes_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  97. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "privacy/removable_volumes_usage_description", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide a message if you need to use removable volumes"), ""));
  98. r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "privacy/removable_volumes_usage_description_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary()));
  99. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/enable"), true));
  100. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "codesign/identity", PROPERTY_HINT_PLACEHOLDER_TEXT, "Type: Name (ID)"), ""));
  101. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/timestamp"), true));
  102. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/replace_existing_signature"), true));
  103. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/hardened_runtime"), true));
  104. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "codesign/entitlements/custom_file", PROPERTY_HINT_GLOBAL_FILE, "*.plist"), ""));
  105. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/allow_jit_code_execution"), false));
  106. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/allow_unsigned_executable_memory"), false));
  107. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/allow_dyld_environment_variables"), false));
  108. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/disable_library_validation"), false));
  109. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/audio_input"), false));
  110. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/camera"), false));
  111. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/location"), false));
  112. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/address_book"), false));
  113. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/calendars"), false));
  114. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/photos_library"), false));
  115. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/apple_events"), false));
  116. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/debugging"), false));
  117. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/app_sandbox/enabled"), false));
  118. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/app_sandbox/network_server"), false));
  119. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/app_sandbox/network_client"), false));
  120. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/app_sandbox/device_usb"), false));
  121. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "codesign/entitlements/app_sandbox/device_bluetooth"), false));
  122. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "codesign/entitlements/app_sandbox/files_downloads", PROPERTY_HINT_ENUM, "No,Read-only,Read-write"), 0));
  123. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "codesign/entitlements/app_sandbox/files_pictures", PROPERTY_HINT_ENUM, "No,Read-only,Read-write"), 0));
  124. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "codesign/entitlements/app_sandbox/files_music", PROPERTY_HINT_ENUM, "No,Read-only,Read-write"), 0));
  125. r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "codesign/entitlements/app_sandbox/files_movies", PROPERTY_HINT_ENUM, "No,Read-only,Read-write"), 0));
  126. r_options->push_back(ExportOption(PropertyInfo(Variant::ARRAY, "codesign/entitlements/app_sandbox/helper_executables", PROPERTY_HINT_ARRAY_TYPE, itos(Variant::STRING) + "/" + itos(PROPERTY_HINT_GLOBAL_FILE) + ":"), Array()));
  127. r_options->push_back(ExportOption(PropertyInfo(Variant::PACKED_STRING_ARRAY, "codesign/custom_options"), PackedStringArray()));
  128. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "notarization/enable"), false));
  129. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "notarization/apple_id_name", PROPERTY_HINT_PLACEHOLDER_TEXT, "Apple ID email"), ""));
  130. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "notarization/apple_id_password", PROPERTY_HINT_PLACEHOLDER_TEXT, "Enable two-factor authentication and provide app-specific password"), ""));
  131. r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "notarization/apple_team_id", PROPERTY_HINT_PLACEHOLDER_TEXT, "Provide team ID if your Apple ID belongs to multiple teams"), ""));
  132. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "texture_format/s3tc"), true));
  133. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "texture_format/etc"), false));
  134. r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "texture_format/etc2"), false));
  135. }
  136. void _rgba8_to_packbits_encode(int p_ch, int p_size, Vector<uint8_t> &p_source, Vector<uint8_t> &p_dest) {
  137. int src_len = p_size * p_size;
  138. Vector<uint8_t> result;
  139. result.resize(src_len * 1.25); //temp vector for rle encoded data, make it 25% larger for worst case scenario
  140. int res_size = 0;
  141. uint8_t buf[128];
  142. int buf_size = 0;
  143. int i = 0;
  144. while (i < src_len) {
  145. uint8_t cur = p_source.ptr()[i * 4 + p_ch];
  146. if (i < src_len - 2) {
  147. if ((p_source.ptr()[(i + 1) * 4 + p_ch] == cur) && (p_source.ptr()[(i + 2) * 4 + p_ch] == cur)) {
  148. if (buf_size > 0) {
  149. result.write[res_size++] = (uint8_t)(buf_size - 1);
  150. memcpy(&result.write[res_size], &buf, buf_size);
  151. res_size += buf_size;
  152. buf_size = 0;
  153. }
  154. uint8_t lim = i + 130 >= src_len ? src_len - i - 1 : 130;
  155. bool hit_lim = true;
  156. for (int j = 3; j <= lim; j++) {
  157. if (p_source.ptr()[(i + j) * 4 + p_ch] != cur) {
  158. hit_lim = false;
  159. i = i + j - 1;
  160. result.write[res_size++] = (uint8_t)(j - 3 + 0x80);
  161. result.write[res_size++] = cur;
  162. break;
  163. }
  164. }
  165. if (hit_lim) {
  166. result.write[res_size++] = (uint8_t)(lim - 3 + 0x80);
  167. result.write[res_size++] = cur;
  168. i = i + lim;
  169. }
  170. } else {
  171. buf[buf_size++] = cur;
  172. if (buf_size == 128) {
  173. result.write[res_size++] = (uint8_t)(buf_size - 1);
  174. memcpy(&result.write[res_size], &buf, buf_size);
  175. res_size += buf_size;
  176. buf_size = 0;
  177. }
  178. }
  179. } else {
  180. buf[buf_size++] = cur;
  181. result.write[res_size++] = (uint8_t)(buf_size - 1);
  182. memcpy(&result.write[res_size], &buf, buf_size);
  183. res_size += buf_size;
  184. buf_size = 0;
  185. }
  186. i++;
  187. }
  188. int ofs = p_dest.size();
  189. p_dest.resize(p_dest.size() + res_size);
  190. memcpy(&p_dest.write[ofs], result.ptr(), res_size);
  191. }
  192. void EditorExportPlatformMacOS::_make_icon(const Ref<Image> &p_icon, Vector<uint8_t> &p_data) {
  193. Ref<ImageTexture> it = memnew(ImageTexture);
  194. Vector<uint8_t> data;
  195. data.resize(8);
  196. data.write[0] = 'i';
  197. data.write[1] = 'c';
  198. data.write[2] = 'n';
  199. data.write[3] = 's';
  200. struct MacOSIconInfo {
  201. const char *name;
  202. const char *mask_name;
  203. bool is_png;
  204. int size;
  205. };
  206. static const MacOSIconInfo icon_infos[] = {
  207. { "ic10", "", true, 1024 }, //1024×1024 32-bit PNG and 512×512@2x 32-bit "retina" PNG
  208. { "ic09", "", true, 512 }, //512×512 32-bit PNG
  209. { "ic14", "", true, 512 }, //256×256@2x 32-bit "retina" PNG
  210. { "ic08", "", true, 256 }, //256×256 32-bit PNG
  211. { "ic13", "", true, 256 }, //128×128@2x 32-bit "retina" PNG
  212. { "ic07", "", true, 128 }, //128×128 32-bit PNG
  213. { "ic12", "", true, 64 }, //32×32@2× 32-bit "retina" PNG
  214. { "ic11", "", true, 32 }, //16×16@2× 32-bit "retina" PNG
  215. { "il32", "l8mk", false, 32 }, //32×32 24-bit RLE + 8-bit uncompressed mask
  216. { "is32", "s8mk", false, 16 } //16×16 24-bit RLE + 8-bit uncompressed mask
  217. };
  218. for (uint64_t i = 0; i < (sizeof(icon_infos) / sizeof(icon_infos[0])); ++i) {
  219. Ref<Image> copy = p_icon; // does this make sense? doesn't this just increase the reference count instead of making a copy? Do we even need a copy?
  220. copy->convert(Image::FORMAT_RGBA8);
  221. copy->resize(icon_infos[i].size, icon_infos[i].size);
  222. if (icon_infos[i].is_png) {
  223. // Encode PNG icon.
  224. it->set_image(copy);
  225. String path = EditorPaths::get_singleton()->get_cache_dir().plus_file("icon.png");
  226. ResourceSaver::save(it, path);
  227. {
  228. Ref<FileAccess> f = FileAccess::open(path, FileAccess::READ);
  229. if (f.is_null()) {
  230. // Clean up generated file.
  231. DirAccess::remove_file_or_error(path);
  232. add_message(EXPORT_MESSAGE_ERROR, TTR("Icon Creation"), vformat(TTR("Could not open icon file \"%s\"."), path));
  233. return;
  234. }
  235. int ofs = data.size();
  236. uint64_t len = f->get_length();
  237. data.resize(data.size() + len + 8);
  238. f->get_buffer(&data.write[ofs + 8], len);
  239. len += 8;
  240. len = BSWAP32(len);
  241. memcpy(&data.write[ofs], icon_infos[i].name, 4);
  242. encode_uint32(len, &data.write[ofs + 4]);
  243. }
  244. // Clean up generated file.
  245. DirAccess::remove_file_or_error(path);
  246. } else {
  247. Vector<uint8_t> src_data = copy->get_data();
  248. //encode 24bit RGB RLE icon
  249. {
  250. int ofs = data.size();
  251. data.resize(data.size() + 8);
  252. _rgba8_to_packbits_encode(0, icon_infos[i].size, src_data, data); // encode R
  253. _rgba8_to_packbits_encode(1, icon_infos[i].size, src_data, data); // encode G
  254. _rgba8_to_packbits_encode(2, icon_infos[i].size, src_data, data); // encode B
  255. int len = data.size() - ofs;
  256. len = BSWAP32(len);
  257. memcpy(&data.write[ofs], icon_infos[i].name, 4);
  258. encode_uint32(len, &data.write[ofs + 4]);
  259. }
  260. //encode 8bit mask uncompressed icon
  261. {
  262. int ofs = data.size();
  263. int len = copy->get_width() * copy->get_height();
  264. data.resize(data.size() + len + 8);
  265. for (int j = 0; j < len; j++) {
  266. data.write[ofs + 8 + j] = src_data.ptr()[j * 4 + 3];
  267. }
  268. len += 8;
  269. len = BSWAP32(len);
  270. memcpy(&data.write[ofs], icon_infos[i].mask_name, 4);
  271. encode_uint32(len, &data.write[ofs + 4]);
  272. }
  273. }
  274. }
  275. uint32_t total_len = data.size();
  276. total_len = BSWAP32(total_len);
  277. encode_uint32(total_len, &data.write[4]);
  278. p_data = data;
  279. }
  280. void EditorExportPlatformMacOS::_fix_plist(const Ref<EditorExportPreset> &p_preset, Vector<uint8_t> &plist, const String &p_binary) {
  281. String str;
  282. String strnew;
  283. str.parse_utf8((const char *)plist.ptr(), plist.size());
  284. Vector<String> lines = str.split("\n");
  285. for (int i = 0; i < lines.size(); i++) {
  286. if (lines[i].find("$binary") != -1) {
  287. strnew += lines[i].replace("$binary", p_binary) + "\n";
  288. } else if (lines[i].find("$name") != -1) {
  289. strnew += lines[i].replace("$name", ProjectSettings::get_singleton()->get("application/config/name")) + "\n";
  290. } else if (lines[i].find("$bundle_identifier") != -1) {
  291. strnew += lines[i].replace("$bundle_identifier", p_preset->get("application/bundle_identifier")) + "\n";
  292. } else if (lines[i].find("$short_version") != -1) {
  293. strnew += lines[i].replace("$short_version", p_preset->get("application/short_version")) + "\n";
  294. } else if (lines[i].find("$version") != -1) {
  295. strnew += lines[i].replace("$version", p_preset->get("application/version")) + "\n";
  296. } else if (lines[i].find("$signature") != -1) {
  297. strnew += lines[i].replace("$signature", p_preset->get("application/signature")) + "\n";
  298. } else if (lines[i].find("$app_category") != -1) {
  299. String cat = p_preset->get("application/app_category");
  300. strnew += lines[i].replace("$app_category", cat.to_lower()) + "\n";
  301. } else if (lines[i].find("$copyright") != -1) {
  302. strnew += lines[i].replace("$copyright", p_preset->get("application/copyright")) + "\n";
  303. } else if (lines[i].find("$highres") != -1) {
  304. strnew += lines[i].replace("$highres", p_preset->get("display/high_res") ? "\t<true/>" : "\t<false/>") + "\n";
  305. } else if (lines[i].find("$usage_descriptions") != -1) {
  306. String descriptions;
  307. if (!((String)p_preset->get("privacy/microphone_usage_description")).is_empty()) {
  308. descriptions += "\t<key>NSMicrophoneUsageDescription</key>\n";
  309. descriptions += "\t<string>" + (String)p_preset->get("privacy/microphone_usage_description") + "</string>\n";
  310. }
  311. if (!((String)p_preset->get("privacy/camera_usage_description")).is_empty()) {
  312. descriptions += "\t<key>NSCameraUsageDescription</key>\n";
  313. descriptions += "\t<string>" + (String)p_preset->get("privacy/camera_usage_description") + "</string>\n";
  314. }
  315. if (!((String)p_preset->get("privacy/location_usage_description")).is_empty()) {
  316. descriptions += "\t<key>NSLocationUsageDescription</key>\n";
  317. descriptions += "\t<string>" + (String)p_preset->get("privacy/location_usage_description") + "</string>\n";
  318. }
  319. if (!((String)p_preset->get("privacy/address_book_usage_description")).is_empty()) {
  320. descriptions += "\t<key>NSContactsUsageDescription</key>\n";
  321. descriptions += "\t<string>" + (String)p_preset->get("privacy/address_book_usage_description") + "</string>\n";
  322. }
  323. if (!((String)p_preset->get("privacy/calendar_usage_description")).is_empty()) {
  324. descriptions += "\t<key>NSCalendarsUsageDescription</key>\n";
  325. descriptions += "\t<string>" + (String)p_preset->get("privacy/calendar_usage_description") + "</string>\n";
  326. }
  327. if (!((String)p_preset->get("privacy/photos_library_usage_description")).is_empty()) {
  328. descriptions += "\t<key>NSPhotoLibraryUsageDescription</key>\n";
  329. descriptions += "\t<string>" + (String)p_preset->get("privacy/photos_library_usage_description") + "</string>\n";
  330. }
  331. if (!((String)p_preset->get("privacy/desktop_folder_usage_description")).is_empty()) {
  332. descriptions += "\t<key>NSDesktopFolderUsageDescription</key>\n";
  333. descriptions += "\t<string>" + (String)p_preset->get("privacy/desktop_folder_usage_description") + "</string>\n";
  334. }
  335. if (!((String)p_preset->get("privacy/documents_folder_usage_description")).is_empty()) {
  336. descriptions += "\t<key>NSDocumentsFolderUsageDescription</key>\n";
  337. descriptions += "\t<string>" + (String)p_preset->get("privacy/documents_folder_usage_description") + "</string>\n";
  338. }
  339. if (!((String)p_preset->get("privacy/downloads_folder_usage_description")).is_empty()) {
  340. descriptions += "\t<key>NSDownloadsFolderUsageDescription</key>\n";
  341. descriptions += "\t<string>" + (String)p_preset->get("privacy/downloads_folder_usage_description") + "</string>\n";
  342. }
  343. if (!((String)p_preset->get("privacy/network_volumes_usage_description")).is_empty()) {
  344. descriptions += "\t<key>NSNetworkVolumesUsageDescription</key>\n";
  345. descriptions += "\t<string>" + (String)p_preset->get("privacy/network_volumes_usage_description") + "</string>\n";
  346. }
  347. if (!((String)p_preset->get("privacy/removable_volumes_usage_description")).is_empty()) {
  348. descriptions += "\t<key>NSRemovableVolumesUsageDescription</key>\n";
  349. descriptions += "\t<string>" + (String)p_preset->get("privacy/removable_volumes_usage_description") + "</string>\n";
  350. }
  351. if (!descriptions.is_empty()) {
  352. strnew += lines[i].replace("$usage_descriptions", descriptions);
  353. }
  354. } else {
  355. strnew += lines[i] + "\n";
  356. }
  357. }
  358. CharString cs = strnew.utf8();
  359. plist.resize(cs.size() - 1);
  360. for (int i = 0; i < cs.size() - 1; i++) {
  361. plist.write[i] = cs[i];
  362. }
  363. }
  364. /**
  365. * If we're running the macOS version of the Godot editor we'll:
  366. * - export our application bundle to a temporary folder
  367. * - attempt to code sign it
  368. * - and then wrap it up in a DMG
  369. */
  370. Error EditorExportPlatformMacOS::_notarize(const Ref<EditorExportPreset> &p_preset, const String &p_path) {
  371. #ifdef MACOS_ENABLED
  372. List<String> args;
  373. args.push_back("altool");
  374. args.push_back("--notarize-app");
  375. args.push_back("--primary-bundle-id");
  376. args.push_back(p_preset->get("application/bundle_identifier"));
  377. args.push_back("--username");
  378. args.push_back(p_preset->get("notarization/apple_id_name"));
  379. args.push_back("--password");
  380. args.push_back(p_preset->get("notarization/apple_id_password"));
  381. args.push_back("--type");
  382. args.push_back("osx");
  383. if (p_preset->get("notarization/apple_team_id")) {
  384. args.push_back("--asc-provider");
  385. args.push_back(p_preset->get("notarization/apple_team_id"));
  386. }
  387. args.push_back("--file");
  388. args.push_back(p_path);
  389. String str;
  390. Error err = OS::get_singleton()->execute("xcrun", args, &str, nullptr, true);
  391. if (err != OK || (str.find("not found") != -1) || (str.find("not recognized") != -1)) {
  392. add_message(EXPORT_MESSAGE_WARNING, TTR("Notarization"), TTR("Could not start xcrun executable."));
  393. return err;
  394. }
  395. print_verbose("altool (" + p_path + "):\n" + str);
  396. int rq_offset = str.find("RequestUUID");
  397. if (rq_offset == -1) {
  398. add_message(EXPORT_MESSAGE_WARNING, TTR("Notarization"), TTR("Notarization failed."));
  399. return FAILED;
  400. } else {
  401. int next_nl = str.find("\n", rq_offset);
  402. String request_uuid = (next_nl == -1) ? str.substr(rq_offset + 14, -1) : str.substr(rq_offset + 14, next_nl - rq_offset - 14);
  403. add_message(EXPORT_MESSAGE_INFO, TTR("Notarization"), vformat(TTR("Notarization request UUID: \"%s\""), request_uuid));
  404. add_message(EXPORT_MESSAGE_INFO, TTR("Notarization"), TTR("The notarization process generally takes less than an hour. When the process is completed, you'll receive an email."));
  405. add_message(EXPORT_MESSAGE_INFO, TTR("Notarization"), "\t" + TTR("You can check progress manually by opening a Terminal and running the following command:"));
  406. add_message(EXPORT_MESSAGE_INFO, TTR("Notarization"), "\t\t\"xcrun altool --notarization-history 0 -u <your email> -p <app-specific pwd>\"");
  407. add_message(EXPORT_MESSAGE_INFO, TTR("Notarization"), "\t" + TTR("Run the following command to staple the notarization ticket to the exported application (optional):"));
  408. add_message(EXPORT_MESSAGE_INFO, TTR("Notarization"), "\t\t\"xcrun stapler staple <app path>\"");
  409. }
  410. #endif
  411. return OK;
  412. }
  413. Error EditorExportPlatformMacOS::_code_sign(const Ref<EditorExportPreset> &p_preset, const String &p_path, const String &p_ent_path, bool p_warn) {
  414. bool force_builtin_codesign = EditorSettings::get_singleton()->get("export/macos/force_builtin_codesign");
  415. bool ad_hoc = (p_preset->get("codesign/identity") == "" || p_preset->get("codesign/identity") == "-");
  416. if ((!FileAccess::exists("/usr/bin/codesign") && !FileAccess::exists("/bin/codesign")) || force_builtin_codesign) {
  417. print_verbose("using built-in codesign...");
  418. #ifdef MODULE_REGEX_ENABLED
  419. #ifdef MACOS_ENABLED
  420. if (p_preset->get("codesign/timestamp") && p_warn) {
  421. add_message(EXPORT_MESSAGE_INFO, TTR("Code Signing"), TTR("Timestamping is not compatible with ad-hoc signature, and was disabled!"));
  422. }
  423. if (p_preset->get("codesign/hardened_runtime") && p_warn) {
  424. add_message(EXPORT_MESSAGE_INFO, TTR("Code Signing"), TTR("Hardened Runtime is not compatible with ad-hoc signature, and was disabled!"));
  425. }
  426. #endif
  427. String error_msg;
  428. Error err = CodeSign::codesign(false, p_preset->get("codesign/replace_existing_signature"), p_path, p_ent_path, error_msg);
  429. if (err != OK) {
  430. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), vformat(TTR("Built-in CodeSign failed with error \"%s\"."), error_msg));
  431. return FAILED;
  432. }
  433. #else
  434. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("Built-in CodeSign require regex module."));
  435. #endif
  436. return OK;
  437. } else {
  438. print_verbose("using external codesign...");
  439. List<String> args;
  440. if (p_preset->get("codesign/timestamp")) {
  441. if (ad_hoc) {
  442. if (p_warn) {
  443. add_message(EXPORT_MESSAGE_INFO, TTR("Code Signing"), TTR("Timestamping is not compatible with ad-hoc signature, and was disabled!"));
  444. }
  445. } else {
  446. args.push_back("--timestamp");
  447. }
  448. }
  449. if (p_preset->get("codesign/hardened_runtime")) {
  450. if (ad_hoc) {
  451. if (p_warn) {
  452. add_message(EXPORT_MESSAGE_INFO, TTR("Code Signing"), TTR("Hardened Runtime is not compatible with ad-hoc signature, and was disabled!"));
  453. }
  454. } else {
  455. args.push_back("--options");
  456. args.push_back("runtime");
  457. }
  458. }
  459. if (p_path.get_extension() != "dmg") {
  460. args.push_back("--entitlements");
  461. args.push_back(p_ent_path);
  462. }
  463. PackedStringArray user_args = p_preset->get("codesign/custom_options");
  464. for (int i = 0; i < user_args.size(); i++) {
  465. String user_arg = user_args[i].strip_edges();
  466. if (!user_arg.is_empty()) {
  467. args.push_back(user_arg);
  468. }
  469. }
  470. args.push_back("-s");
  471. if (ad_hoc) {
  472. args.push_back("-");
  473. } else {
  474. args.push_back(p_preset->get("codesign/identity"));
  475. }
  476. args.push_back("-v"); /* provide some more feedback */
  477. if (p_preset->get("codesign/replace_existing_signature")) {
  478. args.push_back("-f");
  479. }
  480. args.push_back(p_path);
  481. String str;
  482. Error err = OS::get_singleton()->execute("codesign", args, &str, nullptr, true);
  483. if (err != OK || (str.find("not found") != -1) || (str.find("not recognized") != -1)) {
  484. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("Could not start codesign executable, make sure Xcode command line tools are installed."));
  485. return err;
  486. }
  487. print_verbose("codesign (" + p_path + "):\n" + str);
  488. if (str.find("no identity found") != -1) {
  489. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("No identity found."));
  490. return FAILED;
  491. }
  492. if ((str.find("unrecognized blob type") != -1) || (str.find("cannot read entitlement data") != -1)) {
  493. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), TTR("Invalid entitlements file."));
  494. return FAILED;
  495. }
  496. return OK;
  497. }
  498. }
  499. Error EditorExportPlatformMacOS::_code_sign_directory(const Ref<EditorExportPreset> &p_preset, const String &p_path,
  500. const String &p_ent_path, bool p_should_error_on_non_code) {
  501. #ifdef MACOS_ENABLED
  502. static Vector<String> extensions_to_sign;
  503. if (extensions_to_sign.is_empty()) {
  504. extensions_to_sign.push_back("dylib");
  505. extensions_to_sign.push_back("framework");
  506. }
  507. Error dir_access_error;
  508. Ref<DirAccess> dir_access{ DirAccess::open(p_path, &dir_access_error) };
  509. if (dir_access_error != OK) {
  510. return dir_access_error;
  511. }
  512. dir_access->list_dir_begin();
  513. String current_file{ dir_access->get_next() };
  514. while (!current_file.is_empty()) {
  515. String current_file_path{ p_path.plus_file(current_file) };
  516. if (current_file == ".." || current_file == ".") {
  517. current_file = dir_access->get_next();
  518. continue;
  519. }
  520. if (extensions_to_sign.find(current_file.get_extension()) > -1) {
  521. Error code_sign_error{ _code_sign(p_preset, current_file_path, p_ent_path, false) };
  522. if (code_sign_error != OK) {
  523. return code_sign_error;
  524. }
  525. } else if (dir_access->current_is_dir()) {
  526. Error code_sign_error{ _code_sign_directory(p_preset, current_file_path, p_ent_path, p_should_error_on_non_code) };
  527. if (code_sign_error != OK) {
  528. return code_sign_error;
  529. }
  530. } else if (p_should_error_on_non_code) {
  531. add_message(EXPORT_MESSAGE_WARNING, TTR("Code Signing"), vformat(TTR("Cannot sign file %s."), current_file));
  532. return Error::FAILED;
  533. }
  534. current_file = dir_access->get_next();
  535. }
  536. #endif
  537. return OK;
  538. }
  539. Error EditorExportPlatformMacOS::_copy_and_sign_files(Ref<DirAccess> &dir_access, const String &p_src_path,
  540. const String &p_in_app_path, bool p_sign_enabled,
  541. const Ref<EditorExportPreset> &p_preset, const String &p_ent_path,
  542. bool p_should_error_on_non_code_sign) {
  543. Error err{ OK };
  544. if (dir_access->dir_exists(p_src_path)) {
  545. #ifndef UNIX_ENABLED
  546. add_message(EXPORT_MESSAGE_INFO, TTR("Export"), vformat(TTR("Relative symlinks are not supported, exported \"%s\" might be broken!"), p_src_path.get_file()));
  547. #endif
  548. print_verbose("export framework: " + p_src_path + " -> " + p_in_app_path);
  549. err = dir_access->make_dir_recursive(p_in_app_path);
  550. if (err == OK) {
  551. err = dir_access->copy_dir(p_src_path, p_in_app_path, -1, true);
  552. }
  553. } else {
  554. print_verbose("export dylib: " + p_src_path + " -> " + p_in_app_path);
  555. err = dir_access->copy(p_src_path, p_in_app_path);
  556. }
  557. if (err == OK && p_sign_enabled) {
  558. if (dir_access->dir_exists(p_src_path) && p_src_path.get_extension().is_empty()) {
  559. // If it is a directory, find and sign all dynamic libraries.
  560. err = _code_sign_directory(p_preset, p_in_app_path, p_ent_path, p_should_error_on_non_code_sign);
  561. } else {
  562. err = _code_sign(p_preset, p_in_app_path, p_ent_path, false);
  563. }
  564. }
  565. return err;
  566. }
  567. Error EditorExportPlatformMacOS::_export_macos_plugins_for(Ref<EditorExportPlugin> p_editor_export_plugin,
  568. const String &p_app_path_name, Ref<DirAccess> &dir_access,
  569. bool p_sign_enabled, const Ref<EditorExportPreset> &p_preset,
  570. const String &p_ent_path) {
  571. Error error{ OK };
  572. const Vector<String> &macos_plugins{ p_editor_export_plugin->get_macos_plugin_files() };
  573. for (int i = 0; i < macos_plugins.size(); ++i) {
  574. String src_path{ ProjectSettings::get_singleton()->globalize_path(macos_plugins[i]) };
  575. String path_in_app{ p_app_path_name + "/Contents/PlugIns/" + src_path.get_file() };
  576. error = _copy_and_sign_files(dir_access, src_path, path_in_app, p_sign_enabled, p_preset, p_ent_path, false);
  577. if (error != OK) {
  578. break;
  579. }
  580. }
  581. return error;
  582. }
  583. Error EditorExportPlatformMacOS::_create_dmg(const String &p_dmg_path, const String &p_pkg_name, const String &p_app_path_name) {
  584. List<String> args;
  585. if (FileAccess::exists(p_dmg_path)) {
  586. OS::get_singleton()->move_to_trash(p_dmg_path);
  587. }
  588. args.push_back("create");
  589. args.push_back(p_dmg_path);
  590. args.push_back("-volname");
  591. args.push_back(p_pkg_name);
  592. args.push_back("-fs");
  593. args.push_back("HFS+");
  594. args.push_back("-srcfolder");
  595. args.push_back(p_app_path_name);
  596. String str;
  597. Error err = OS::get_singleton()->execute("hdiutil", args, &str, nullptr, true);
  598. if (err != OK) {
  599. add_message(EXPORT_MESSAGE_ERROR, TTR("DMG Creation"), TTR("Could not start hdiutil executable."));
  600. return err;
  601. }
  602. print_verbose("hdiutil returned: " + str);
  603. if (str.find("create failed") != -1) {
  604. if (str.find("File exists") != -1) {
  605. add_message(EXPORT_MESSAGE_ERROR, TTR("DMG Creation"), TTR("`hdiutil create` failed - file exists."));
  606. } else {
  607. add_message(EXPORT_MESSAGE_ERROR, TTR("DMG Creation"), TTR("`hdiutil create` failed."));
  608. }
  609. return FAILED;
  610. }
  611. return OK;
  612. }
  613. Error EditorExportPlatformMacOS::_export_debug_script(const Ref<EditorExportPreset> &p_preset, const String &p_app_name, const String &p_pkg_name, const String &p_path) {
  614. Ref<FileAccess> f = FileAccess::open(p_path, FileAccess::WRITE);
  615. if (f.is_null()) {
  616. add_message(EXPORT_MESSAGE_ERROR, TTR("Debug Script Export"), vformat(TTR("Could not open file \"%s\"."), p_path));
  617. return ERR_CANT_CREATE;
  618. }
  619. f->store_line("#!/bin/sh");
  620. f->store_line("echo -ne '\\033c\\033]0;" + p_app_name + "\\a'");
  621. f->store_line("");
  622. f->store_line("function app_realpath() {");
  623. f->store_line(" SOURCE=$1");
  624. f->store_line(" while [ -h \"$SOURCE\" ]; do");
  625. f->store_line(" DIR=$(dirname \"$SOURCE\")");
  626. f->store_line(" SOURCE=$(readlink \"$SOURCE\")");
  627. f->store_line(" [[ $SOURCE != /* ]] && SOURCE=$DIR/$SOURCE");
  628. f->store_line(" done");
  629. f->store_line(" echo \"$( cd -P \"$( dirname \"$SOURCE\" )\" >/dev/null 2>&1 && pwd )\"");
  630. f->store_line("}");
  631. f->store_line("");
  632. f->store_line("BASE_PATH=\"$(app_realpath \"${BASH_SOURCE[0]}\")\"");
  633. f->store_line("\"$BASE_PATH/" + p_pkg_name + "\" \"$@\"");
  634. f->store_line("");
  635. return OK;
  636. }
  637. Error EditorExportPlatformMacOS::export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags) {
  638. ExportNotifier notifier(*this, p_preset, p_debug, p_path, p_flags);
  639. String src_pkg_name;
  640. EditorProgress ep("export", "Exporting for macOS", 3, true);
  641. if (p_debug) {
  642. src_pkg_name = p_preset->get("custom_template/debug");
  643. } else {
  644. src_pkg_name = p_preset->get("custom_template/release");
  645. }
  646. if (src_pkg_name.is_empty()) {
  647. String err;
  648. src_pkg_name = find_export_template("macos.zip", &err);
  649. if (src_pkg_name.is_empty()) {
  650. add_message(EXPORT_MESSAGE_ERROR, TTR("Prepare Templates"), TTR("Export template not found."));
  651. return ERR_FILE_NOT_FOUND;
  652. }
  653. }
  654. if (!DirAccess::exists(p_path.get_base_dir())) {
  655. add_message(EXPORT_MESSAGE_ERROR, TTR("Prepare Templates"), TTR("The given export path doesn't exist."));
  656. return ERR_FILE_BAD_PATH;
  657. }
  658. Ref<FileAccess> io_fa;
  659. zlib_filefunc_def io = zipio_create_io(&io_fa);
  660. if (ep.step(TTR("Creating app bundle"), 0)) {
  661. return ERR_SKIP;
  662. }
  663. unzFile src_pkg_zip = unzOpen2(src_pkg_name.utf8().get_data(), &io);
  664. if (!src_pkg_zip) {
  665. add_message(EXPORT_MESSAGE_ERROR, TTR("Prepare Templates"), vformat(TTR("Could not find template app to export: \"%s\"."), src_pkg_name));
  666. return ERR_FILE_NOT_FOUND;
  667. }
  668. int ret = unzGoToFirstFile(src_pkg_zip);
  669. String architecture = p_preset->get("binary_format/architecture");
  670. String binary_to_use = "godot_macos_" + String(p_debug ? "debug" : "release") + "." + architecture;
  671. String pkg_name;
  672. if (String(ProjectSettings::get_singleton()->get("application/config/name")) != "") {
  673. pkg_name = String(ProjectSettings::get_singleton()->get("application/config/name"));
  674. } else {
  675. pkg_name = "Unnamed";
  676. }
  677. pkg_name = OS::get_singleton()->get_safe_dir_name(pkg_name);
  678. String export_format;
  679. if (use_dmg() && p_path.ends_with("dmg")) {
  680. export_format = "dmg";
  681. } else if (p_path.ends_with("zip")) {
  682. export_format = "zip";
  683. } else if (p_path.ends_with("app")) {
  684. export_format = "app";
  685. } else {
  686. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), TTR("Invalid export format."));
  687. return ERR_CANT_CREATE;
  688. }
  689. // Create our application bundle.
  690. String tmp_app_dir_name = pkg_name + ".app";
  691. String tmp_base_path_name;
  692. String tmp_app_path_name;
  693. String scr_path;
  694. if (export_format == "app") {
  695. tmp_base_path_name = p_path.get_base_dir();
  696. tmp_app_path_name = p_path;
  697. scr_path = p_path.get_basename() + ".command";
  698. } else {
  699. tmp_base_path_name = EditorPaths::get_singleton()->get_cache_dir().plus_file(pkg_name);
  700. tmp_app_path_name = tmp_base_path_name.plus_file(tmp_app_dir_name);
  701. scr_path = tmp_base_path_name.plus_file(pkg_name + ".command");
  702. }
  703. print_verbose("Exporting to " + tmp_app_path_name);
  704. Error err = OK;
  705. Ref<DirAccess> tmp_app_dir = DirAccess::create_for_path(tmp_base_path_name);
  706. if (tmp_app_dir.is_null()) {
  707. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not create directory: \"%s\"."), tmp_base_path_name));
  708. err = ERR_CANT_CREATE;
  709. }
  710. DirAccess::remove_file_or_error(scr_path);
  711. if (DirAccess::exists(tmp_app_path_name)) {
  712. String old_dir = tmp_app_dir->get_current_dir();
  713. if (tmp_app_dir->change_dir(tmp_app_path_name) == OK) {
  714. tmp_app_dir->erase_contents_recursive();
  715. tmp_app_dir->change_dir(old_dir);
  716. }
  717. }
  718. Array helpers = p_preset->get("codesign/entitlements/app_sandbox/helper_executables");
  719. // Create our folder structure.
  720. if (err == OK) {
  721. print_verbose("Creating " + tmp_app_path_name + "/Contents/MacOS");
  722. err = tmp_app_dir->make_dir_recursive(tmp_app_path_name + "/Contents/MacOS");
  723. if (err != OK) {
  724. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not create directory \"%s\"."), tmp_app_path_name + "/Contents/MacOS"));
  725. }
  726. }
  727. if (err == OK) {
  728. print_verbose("Creating " + tmp_app_path_name + "/Contents/Frameworks");
  729. err = tmp_app_dir->make_dir_recursive(tmp_app_path_name + "/Contents/Frameworks");
  730. if (err != OK) {
  731. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not create directory \"%s\"."), tmp_app_path_name + "/Contents/Frameworks"));
  732. }
  733. }
  734. if ((err == OK) && helpers.size() > 0) {
  735. print_line("Creating " + tmp_app_path_name + "/Contents/Helpers");
  736. err = tmp_app_dir->make_dir_recursive(tmp_app_path_name + "/Contents/Helpers");
  737. if (err != OK) {
  738. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not create directory \"%s\"."), tmp_app_path_name + "/Contents/Helpers"));
  739. }
  740. }
  741. if (err == OK) {
  742. print_verbose("Creating " + tmp_app_path_name + "/Contents/Resources");
  743. err = tmp_app_dir->make_dir_recursive(tmp_app_path_name + "/Contents/Resources");
  744. if (err != OK) {
  745. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not create directory \"%s\"."), tmp_app_path_name + "/Contents/Resources"));
  746. }
  747. }
  748. Dictionary appnames = ProjectSettings::get_singleton()->get("application/config/name_localized");
  749. Dictionary microphone_usage_descriptions = p_preset->get("privacy/microphone_usage_description_localized");
  750. Dictionary camera_usage_descriptions = p_preset->get("privacy/camera_usage_description_localized");
  751. Dictionary location_usage_descriptions = p_preset->get("privacy/location_usage_description_localized");
  752. Dictionary address_book_usage_descriptions = p_preset->get("privacy/address_book_usage_description_localized");
  753. Dictionary calendar_usage_descriptions = p_preset->get("privacy/calendar_usage_description_localized");
  754. Dictionary photos_library_usage_descriptions = p_preset->get("privacy/photos_library_usage_description_localized");
  755. Dictionary desktop_folder_usage_descriptions = p_preset->get("privacy/desktop_folder_usage_description_localized");
  756. Dictionary documents_folder_usage_descriptions = p_preset->get("privacy/documents_folder_usage_description_localized");
  757. Dictionary downloads_folder_usage_descriptions = p_preset->get("privacy/downloads_folder_usage_description_localized");
  758. Dictionary network_volumes_usage_descriptions = p_preset->get("privacy/network_volumes_usage_description_localized");
  759. Dictionary removable_volumes_usage_descriptions = p_preset->get("privacy/removable_volumes_usage_description_localized");
  760. Dictionary copyrights = p_preset->get("application/copyright_localized");
  761. Vector<String> translations = ProjectSettings::get_singleton()->get("internationalization/locale/translations");
  762. if (translations.size() > 0) {
  763. {
  764. String fname = tmp_app_path_name + "/Contents/Resources/en.lproj";
  765. tmp_app_dir->make_dir_recursive(fname);
  766. Ref<FileAccess> f = FileAccess::open(fname + "/InfoPlist.strings", FileAccess::WRITE);
  767. f->store_line("/* Localized versions of Info.plist keys */");
  768. f->store_line("");
  769. f->store_line("CFBundleDisplayName = \"" + ProjectSettings::get_singleton()->get("application/config/name").operator String() + "\";");
  770. if (!((String)p_preset->get("privacy/microphone_usage_description")).is_empty()) {
  771. f->store_line("NSMicrophoneUsageDescription = \"" + p_preset->get("privacy/microphone_usage_description").operator String() + "\";");
  772. }
  773. if (!((String)p_preset->get("privacy/camera_usage_description")).is_empty()) {
  774. f->store_line("NSCameraUsageDescription = \"" + p_preset->get("privacy/camera_usage_description").operator String() + "\";");
  775. }
  776. if (!((String)p_preset->get("privacy/location_usage_description")).is_empty()) {
  777. f->store_line("NSLocationUsageDescription = \"" + p_preset->get("privacy/location_usage_description").operator String() + "\";");
  778. }
  779. if (!((String)p_preset->get("privacy/address_book_usage_description")).is_empty()) {
  780. f->store_line("NSContactsUsageDescription = \"" + p_preset->get("privacy/address_book_usage_description").operator String() + "\";");
  781. }
  782. if (!((String)p_preset->get("privacy/calendar_usage_description")).is_empty()) {
  783. f->store_line("NSCalendarsUsageDescription = \"" + p_preset->get("privacy/calendar_usage_description").operator String() + "\";");
  784. }
  785. if (!((String)p_preset->get("privacy/photos_library_usage_description")).is_empty()) {
  786. f->store_line("NSPhotoLibraryUsageDescription = \"" + p_preset->get("privacy/photos_library_usage_description").operator String() + "\";");
  787. }
  788. if (!((String)p_preset->get("privacy/desktop_folder_usage_description")).is_empty()) {
  789. f->store_line("NSDesktopFolderUsageDescription = \"" + p_preset->get("privacy/desktop_folder_usage_description").operator String() + "\";");
  790. }
  791. if (!((String)p_preset->get("privacy/documents_folder_usage_description")).is_empty()) {
  792. f->store_line("NSDocumentsFolderUsageDescription = \"" + p_preset->get("privacy/documents_folder_usage_description").operator String() + "\";");
  793. }
  794. if (!((String)p_preset->get("privacy/downloads_folder_usage_description")).is_empty()) {
  795. f->store_line("NSDownloadsFolderUsageDescription = \"" + p_preset->get("privacy/downloads_folder_usage_description").operator String() + "\";");
  796. }
  797. if (!((String)p_preset->get("privacy/network_volumes_usage_description")).is_empty()) {
  798. f->store_line("NSNetworkVolumesUsageDescription = \"" + p_preset->get("privacy/network_volumes_usage_description").operator String() + "\";");
  799. }
  800. if (!((String)p_preset->get("privacy/removable_volumes_usage_description")).is_empty()) {
  801. f->store_line("NSRemovableVolumesUsageDescription = \"" + p_preset->get("privacy/removable_volumes_usage_description").operator String() + "\";");
  802. }
  803. f->store_line("NSHumanReadableCopyright = \"" + p_preset->get("application/copyright").operator String() + "\";");
  804. }
  805. HashSet<String> languages;
  806. for (const String &E : translations) {
  807. Ref<Translation> tr = ResourceLoader::load(E);
  808. if (tr.is_valid() && tr->get_locale() != "en") {
  809. languages.insert(tr->get_locale());
  810. }
  811. }
  812. for (const String &lang : languages) {
  813. String fname = tmp_app_path_name + "/Contents/Resources/" + lang + ".lproj";
  814. tmp_app_dir->make_dir_recursive(fname);
  815. Ref<FileAccess> f = FileAccess::open(fname + "/InfoPlist.strings", FileAccess::WRITE);
  816. f->store_line("/* Localized versions of Info.plist keys */");
  817. f->store_line("");
  818. if (appnames.has(lang)) {
  819. f->store_line("CFBundleDisplayName = \"" + appnames[lang].operator String() + "\";");
  820. }
  821. if (microphone_usage_descriptions.has(lang)) {
  822. f->store_line("NSMicrophoneUsageDescription = \"" + microphone_usage_descriptions[lang].operator String() + "\";");
  823. }
  824. if (camera_usage_descriptions.has(lang)) {
  825. f->store_line("NSCameraUsageDescription = \"" + camera_usage_descriptions[lang].operator String() + "\";");
  826. }
  827. if (location_usage_descriptions.has(lang)) {
  828. f->store_line("NSLocationUsageDescription = \"" + location_usage_descriptions[lang].operator String() + "\";");
  829. }
  830. if (address_book_usage_descriptions.has(lang)) {
  831. f->store_line("NSContactsUsageDescription = \"" + address_book_usage_descriptions[lang].operator String() + "\";");
  832. }
  833. if (calendar_usage_descriptions.has(lang)) {
  834. f->store_line("NSCalendarsUsageDescription = \"" + calendar_usage_descriptions[lang].operator String() + "\";");
  835. }
  836. if (photos_library_usage_descriptions.has(lang)) {
  837. f->store_line("NSPhotoLibraryUsageDescription = \"" + photos_library_usage_descriptions[lang].operator String() + "\";");
  838. }
  839. if (desktop_folder_usage_descriptions.has(lang)) {
  840. f->store_line("NSDesktopFolderUsageDescription = \"" + desktop_folder_usage_descriptions[lang].operator String() + "\";");
  841. }
  842. if (documents_folder_usage_descriptions.has(lang)) {
  843. f->store_line("NSDocumentsFolderUsageDescription = \"" + documents_folder_usage_descriptions[lang].operator String() + "\";");
  844. }
  845. if (downloads_folder_usage_descriptions.has(lang)) {
  846. f->store_line("NSDownloadsFolderUsageDescription = \"" + downloads_folder_usage_descriptions[lang].operator String() + "\";");
  847. }
  848. if (network_volumes_usage_descriptions.has(lang)) {
  849. f->store_line("NSNetworkVolumesUsageDescription = \"" + network_volumes_usage_descriptions[lang].operator String() + "\";");
  850. }
  851. if (removable_volumes_usage_descriptions.has(lang)) {
  852. f->store_line("NSRemovableVolumesUsageDescription = \"" + removable_volumes_usage_descriptions[lang].operator String() + "\";");
  853. }
  854. if (copyrights.has(lang)) {
  855. f->store_line("NSHumanReadableCopyright = \"" + copyrights[lang].operator String() + "\";");
  856. }
  857. }
  858. }
  859. // Now process our template.
  860. bool found_binary = false;
  861. Vector<String> dylibs_found;
  862. while (ret == UNZ_OK && err == OK) {
  863. bool is_execute = false;
  864. // Get filename.
  865. unz_file_info info;
  866. char fname[16384];
  867. ret = unzGetCurrentFileInfo(src_pkg_zip, &info, fname, 16384, nullptr, 0, nullptr, 0);
  868. if (ret != UNZ_OK) {
  869. break;
  870. }
  871. String file = String::utf8(fname);
  872. Vector<uint8_t> data;
  873. data.resize(info.uncompressed_size);
  874. // Read.
  875. unzOpenCurrentFile(src_pkg_zip);
  876. unzReadCurrentFile(src_pkg_zip, data.ptrw(), data.size());
  877. unzCloseCurrentFile(src_pkg_zip);
  878. // Write.
  879. file = file.replace_first("macos_template.app/", "");
  880. if (((info.external_fa >> 16L) & 0120000) == 0120000) {
  881. #ifndef UNIX_ENABLED
  882. add_message(EXPORT_MESSAGE_INFO, TTR("Export"), TTR("Relative symlinks are not supported on this OS, the exported project might be broken!"));
  883. #endif
  884. // Handle symlinks in the archive.
  885. file = tmp_app_path_name.plus_file(file);
  886. if (err == OK) {
  887. err = tmp_app_dir->make_dir_recursive(file.get_base_dir());
  888. if (err != OK) {
  889. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not create directory \"%s\"."), file.get_base_dir()));
  890. }
  891. }
  892. if (err == OK) {
  893. String lnk_data = String::utf8((const char *)data.ptr(), data.size());
  894. err = tmp_app_dir->create_link(lnk_data, file);
  895. if (err != OK) {
  896. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not created symlink \"%s\" -> \"%s\"."), lnk_data, file));
  897. }
  898. print_verbose(vformat("ADDING SYMLINK %s => %s\n", file, lnk_data));
  899. }
  900. ret = unzGoToNextFile(src_pkg_zip);
  901. continue; // next
  902. }
  903. if (file == "Contents/Info.plist") {
  904. _fix_plist(p_preset, data, pkg_name);
  905. }
  906. if (file.begins_with("Contents/MacOS/godot_")) {
  907. if (file != "Contents/MacOS/" + binary_to_use) {
  908. ret = unzGoToNextFile(src_pkg_zip);
  909. continue; // skip
  910. }
  911. found_binary = true;
  912. is_execute = true;
  913. file = "Contents/MacOS/" + pkg_name;
  914. }
  915. if (file == "Contents/Resources/icon.icns") {
  916. // See if there is an icon.
  917. String iconpath;
  918. if (p_preset->get("application/icon") != "") {
  919. iconpath = p_preset->get("application/icon");
  920. } else {
  921. iconpath = ProjectSettings::get_singleton()->get("application/config/icon");
  922. }
  923. if (!iconpath.is_empty()) {
  924. if (iconpath.get_extension() == "icns") {
  925. Ref<FileAccess> icon = FileAccess::open(iconpath, FileAccess::READ);
  926. if (icon.is_valid()) {
  927. data.resize(icon->get_length());
  928. icon->get_buffer(&data.write[0], icon->get_length());
  929. }
  930. } else {
  931. Ref<Image> icon;
  932. icon.instantiate();
  933. icon->load(iconpath);
  934. if (!icon->is_empty()) {
  935. _make_icon(icon, data);
  936. }
  937. }
  938. }
  939. }
  940. if (data.size() > 0) {
  941. if (file.find("/data.mono.macos.release_debug." + architecture + "/") != -1) {
  942. if (!p_debug) {
  943. ret = unzGoToNextFile(src_pkg_zip);
  944. continue; // skip
  945. }
  946. file = file.replace("/data.mono.macos.release_debug." + architecture + "/", "/GodotSharp/");
  947. }
  948. if (file.find("/data.mono.macos.release." + architecture + "/") != -1) {
  949. if (p_debug) {
  950. ret = unzGoToNextFile(src_pkg_zip);
  951. continue; // skip
  952. }
  953. file = file.replace("/data.mono.macos.release." + architecture + "/", "/GodotSharp/");
  954. }
  955. if (file.ends_with(".dylib")) {
  956. dylibs_found.push_back(file);
  957. }
  958. print_verbose("ADDING: " + file + " size: " + itos(data.size()));
  959. // Write it into our application bundle.
  960. file = tmp_app_path_name.plus_file(file);
  961. if (err == OK) {
  962. err = tmp_app_dir->make_dir_recursive(file.get_base_dir());
  963. if (err != OK) {
  964. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not create directory \"%s\"."), file.get_base_dir()));
  965. }
  966. }
  967. if (err == OK) {
  968. Ref<FileAccess> f = FileAccess::open(file, FileAccess::WRITE);
  969. if (f.is_valid()) {
  970. f->store_buffer(data.ptr(), data.size());
  971. f.unref();
  972. if (is_execute) {
  973. // chmod with 0755 if the file is executable.
  974. FileAccess::set_unix_permissions(file, 0755);
  975. }
  976. } else {
  977. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Could not open \"%s\"."), file));
  978. err = ERR_CANT_CREATE;
  979. }
  980. }
  981. }
  982. ret = unzGoToNextFile(src_pkg_zip);
  983. }
  984. // We're done with our source zip.
  985. unzClose(src_pkg_zip);
  986. if (!found_binary) {
  987. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), vformat(TTR("Requested template binary \"%s\" not found. It might be missing from your template archive."), binary_to_use));
  988. err = ERR_FILE_NOT_FOUND;
  989. }
  990. // Save console script.
  991. if (err == OK) {
  992. int con_scr = p_preset->get("debug/export_console_script");
  993. if ((con_scr == 1 && p_debug) || (con_scr == 2)) {
  994. err = _export_debug_script(p_preset, pkg_name, tmp_app_path_name.get_file() + "/Contents/MacOS/" + pkg_name, scr_path);
  995. FileAccess::set_unix_permissions(scr_path, 0755);
  996. if (err != OK) {
  997. add_message(EXPORT_MESSAGE_ERROR, TTR("Export"), TTR("Could not create console script."));
  998. }
  999. }
  1000. }
  1001. if (err == OK) {
  1002. if (ep.step(TTR("Making PKG"), 1)) {
  1003. return ERR_SKIP;
  1004. }
  1005. String pack_path = tmp_app_path_name + "/Contents/Resources/" + pkg_name + ".pck";
  1006. Vector<SharedObject> shared_objects;
  1007. err = save_pack(p_preset, p_debug, pack_path, &shared_objects);
  1008. // See if we can code sign our new package.
  1009. bool sign_enabled = p_preset->get("codesign/enable");
  1010. String ent_path = p_preset->get("codesign/entitlements/custom_file");
  1011. String hlp_ent_path = EditorPaths::get_singleton()->get_cache_dir().plus_file(pkg_name + "_helper.entitlements");
  1012. if (sign_enabled && (ent_path.is_empty())) {
  1013. ent_path = EditorPaths::get_singleton()->get_cache_dir().plus_file(pkg_name + ".entitlements");
  1014. Ref<FileAccess> ent_f = FileAccess::open(ent_path, FileAccess::WRITE);
  1015. if (ent_f.is_valid()) {
  1016. ent_f->store_line("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
  1017. ent_f->store_line("<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">");
  1018. ent_f->store_line("<plist version=\"1.0\">");
  1019. ent_f->store_line("<dict>");
  1020. if (Engine::get_singleton()->has_singleton("GodotSharp")) {
  1021. // These entitlements are required to run managed code, and are always enabled in Mono builds.
  1022. ent_f->store_line("<key>com.apple.security.cs.allow-jit</key>");
  1023. ent_f->store_line("<true/>");
  1024. ent_f->store_line("<key>com.apple.security.cs.allow-unsigned-executable-memory</key>");
  1025. ent_f->store_line("<true/>");
  1026. ent_f->store_line("<key>com.apple.security.cs.allow-dyld-environment-variables</key>");
  1027. ent_f->store_line("<true/>");
  1028. } else {
  1029. if ((bool)p_preset->get("codesign/entitlements/allow_jit_code_execution")) {
  1030. ent_f->store_line("<key>com.apple.security.cs.allow-jit</key>");
  1031. ent_f->store_line("<true/>");
  1032. }
  1033. if ((bool)p_preset->get("codesign/entitlements/allow_unsigned_executable_memory")) {
  1034. ent_f->store_line("<key>com.apple.security.cs.allow-unsigned-executable-memory</key>");
  1035. ent_f->store_line("<true/>");
  1036. }
  1037. if ((bool)p_preset->get("codesign/entitlements/allow_dyld_environment_variables")) {
  1038. ent_f->store_line("<key>com.apple.security.cs.allow-dyld-environment-variables</key>");
  1039. ent_f->store_line("<true/>");
  1040. }
  1041. }
  1042. if ((bool)p_preset->get("codesign/entitlements/disable_library_validation")) {
  1043. ent_f->store_line("<key>com.apple.security.cs.disable-library-validation</key>");
  1044. ent_f->store_line("<true/>");
  1045. }
  1046. if ((bool)p_preset->get("codesign/entitlements/audio_input")) {
  1047. ent_f->store_line("<key>com.apple.security.device.audio-input</key>");
  1048. ent_f->store_line("<true/>");
  1049. }
  1050. if ((bool)p_preset->get("codesign/entitlements/camera")) {
  1051. ent_f->store_line("<key>com.apple.security.device.camera</key>");
  1052. ent_f->store_line("<true/>");
  1053. }
  1054. if ((bool)p_preset->get("codesign/entitlements/location")) {
  1055. ent_f->store_line("<key>com.apple.security.personal-information.location</key>");
  1056. ent_f->store_line("<true/>");
  1057. }
  1058. if ((bool)p_preset->get("codesign/entitlements/address_book")) {
  1059. ent_f->store_line("<key>com.apple.security.personal-information.addressbook</key>");
  1060. ent_f->store_line("<true/>");
  1061. }
  1062. if ((bool)p_preset->get("codesign/entitlements/calendars")) {
  1063. ent_f->store_line("<key>com.apple.security.personal-information.calendars</key>");
  1064. ent_f->store_line("<true/>");
  1065. }
  1066. if ((bool)p_preset->get("codesign/entitlements/photos_library")) {
  1067. ent_f->store_line("<key>com.apple.security.personal-information.photos-library</key>");
  1068. ent_f->store_line("<true/>");
  1069. }
  1070. if ((bool)p_preset->get("codesign/entitlements/apple_events")) {
  1071. ent_f->store_line("<key>com.apple.security.automation.apple-events</key>");
  1072. ent_f->store_line("<true/>");
  1073. }
  1074. if ((bool)p_preset->get("codesign/entitlements/debugging")) {
  1075. ent_f->store_line("<key>com.apple.security.get-task-allow</key>");
  1076. ent_f->store_line("<true/>");
  1077. }
  1078. if ((bool)p_preset->get("codesign/entitlements/app_sandbox/enabled")) {
  1079. ent_f->store_line("<key>com.apple.security.app-sandbox</key>");
  1080. ent_f->store_line("<true/>");
  1081. if ((bool)p_preset->get("codesign/entitlements/app_sandbox/network_server")) {
  1082. ent_f->store_line("<key>com.apple.security.network.server</key>");
  1083. ent_f->store_line("<true/>");
  1084. }
  1085. if ((bool)p_preset->get("codesign/entitlements/app_sandbox/network_client")) {
  1086. ent_f->store_line("<key>com.apple.security.network.client</key>");
  1087. ent_f->store_line("<true/>");
  1088. }
  1089. if ((bool)p_preset->get("codesign/entitlements/app_sandbox/device_usb")) {
  1090. ent_f->store_line("<key>com.apple.security.device.usb</key>");
  1091. ent_f->store_line("<true/>");
  1092. }
  1093. if ((bool)p_preset->get("codesign/entitlements/app_sandbox/device_bluetooth")) {
  1094. ent_f->store_line("<key>com.apple.security.device.bluetooth</key>");
  1095. ent_f->store_line("<true/>");
  1096. }
  1097. if ((int)p_preset->get("codesign/entitlements/app_sandbox/files_downloads") == 1) {
  1098. ent_f->store_line("<key>com.apple.security.files.downloads.read-only</key>");
  1099. ent_f->store_line("<true/>");
  1100. }
  1101. if ((int)p_preset->get("codesign/entitlements/app_sandbox/files_downloads") == 2) {
  1102. ent_f->store_line("<key>com.apple.security.files.downloads.read-write</key>");
  1103. ent_f->store_line("<true/>");
  1104. }
  1105. if ((int)p_preset->get("codesign/entitlements/app_sandbox/files_pictures") == 1) {
  1106. ent_f->store_line("<key>com.apple.security.files.pictures.read-only</key>");
  1107. ent_f->store_line("<true/>");
  1108. }
  1109. if ((int)p_preset->get("codesign/entitlements/app_sandbox/files_pictures") == 2) {
  1110. ent_f->store_line("<key>com.apple.security.files.pictures.read-write</key>");
  1111. ent_f->store_line("<true/>");
  1112. }
  1113. if ((int)p_preset->get("codesign/entitlements/app_sandbox/files_music") == 1) {
  1114. ent_f->store_line("<key>com.apple.security.files.music.read-only</key>");
  1115. ent_f->store_line("<true/>");
  1116. }
  1117. if ((int)p_preset->get("codesign/entitlements/app_sandbox/files_music") == 2) {
  1118. ent_f->store_line("<key>com.apple.security.files.music.read-write</key>");
  1119. ent_f->store_line("<true/>");
  1120. }
  1121. if ((int)p_preset->get("codesign/entitlements/app_sandbox/files_movies") == 1) {
  1122. ent_f->store_line("<key>com.apple.security.files.movies.read-only</key>");
  1123. ent_f->store_line("<true/>");
  1124. }
  1125. if ((int)p_preset->get("codesign/entitlements/app_sandbox/files_movies") == 2) {
  1126. ent_f->store_line("<key>com.apple.security.files.movies.read-write</key>");
  1127. ent_f->store_line("<true/>");
  1128. }
  1129. }
  1130. ent_f->store_line("</dict>");
  1131. ent_f->store_line("</plist>");
  1132. } else {
  1133. add_message(EXPORT_MESSAGE_ERROR, TTR("Code Signing"), TTR("Could not create entitlements file."));
  1134. err = ERR_CANT_CREATE;
  1135. }
  1136. if ((err == OK) && helpers.size() > 0) {
  1137. ent_f = FileAccess::open(hlp_ent_path, FileAccess::WRITE);
  1138. if (ent_f.is_valid()) {
  1139. ent_f->store_line("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
  1140. ent_f->store_line("<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">");
  1141. ent_f->store_line("<plist version=\"1.0\">");
  1142. ent_f->store_line("<dict>");
  1143. ent_f->store_line("<key>com.apple.security.app-sandbox</key>");
  1144. ent_f->store_line("<true/>");
  1145. ent_f->store_line("<key>com.apple.security.inherit</key>");
  1146. ent_f->store_line("<true/>");
  1147. ent_f->store_line("</dict>");
  1148. ent_f->store_line("</plist>");
  1149. } else {
  1150. add_message(EXPORT_MESSAGE_ERROR, TTR("Code Signing"), TTR("Could not create helper entitlements file."));
  1151. err = ERR_CANT_CREATE;
  1152. }
  1153. }
  1154. }
  1155. if ((err == OK) && helpers.size() > 0) {
  1156. Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
  1157. for (int i = 0; i < helpers.size(); i++) {
  1158. String hlp_path = helpers[i];
  1159. err = da->copy(hlp_path, tmp_app_path_name + "/Contents/Helpers/" + hlp_path.get_file());
  1160. if (err == OK && sign_enabled) {
  1161. err = _code_sign(p_preset, tmp_app_path_name + "/Contents/Helpers/" + hlp_path.get_file(), hlp_ent_path, false);
  1162. }
  1163. FileAccess::set_unix_permissions(tmp_app_path_name + "/Contents/Helpers/" + hlp_path.get_file(), 0755);
  1164. }
  1165. }
  1166. bool ad_hoc = true;
  1167. if (err == OK) {
  1168. #ifdef MACOS_ENABLED
  1169. String sign_identity = p_preset->get("codesign/identity");
  1170. #else
  1171. String sign_identity = "-";
  1172. #endif
  1173. ad_hoc = (sign_identity == "" || sign_identity == "-");
  1174. bool lib_validation = p_preset->get("codesign/entitlements/disable_library_validation");
  1175. if ((!dylibs_found.is_empty() || !shared_objects.is_empty()) && sign_enabled && ad_hoc && !lib_validation) {
  1176. add_message(EXPORT_MESSAGE_ERROR, TTR("Code Signing"), TTR("Ad-hoc signed applications require the 'Disable Library Validation' entitlement to load dynamic libraries."));
  1177. err = ERR_CANT_CREATE;
  1178. }
  1179. }
  1180. if (err == OK) {
  1181. Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
  1182. for (int i = 0; i < shared_objects.size(); i++) {
  1183. String src_path = ProjectSettings::get_singleton()->globalize_path(shared_objects[i].path);
  1184. if (shared_objects[i].target.is_empty()) {
  1185. String path_in_app = tmp_app_path_name + "/Contents/Frameworks/" + src_path.get_file();
  1186. err = _copy_and_sign_files(da, src_path, path_in_app, sign_enabled, p_preset, ent_path, true);
  1187. } else {
  1188. String path_in_app = tmp_app_path_name.plus_file(shared_objects[i].target).plus_file(src_path.get_file());
  1189. err = _copy_and_sign_files(da, src_path, path_in_app, sign_enabled, p_preset, ent_path, false);
  1190. }
  1191. if (err != OK) {
  1192. break;
  1193. }
  1194. }
  1195. Vector<Ref<EditorExportPlugin>> export_plugins{ EditorExport::get_singleton()->get_export_plugins() };
  1196. for (int i = 0; i < export_plugins.size(); ++i) {
  1197. err = _export_macos_plugins_for(export_plugins[i], tmp_app_path_name, da, sign_enabled, p_preset, ent_path);
  1198. if (err != OK) {
  1199. break;
  1200. }
  1201. }
  1202. }
  1203. if (sign_enabled) {
  1204. for (int i = 0; i < dylibs_found.size(); i++) {
  1205. if (err == OK) {
  1206. err = _code_sign(p_preset, tmp_app_path_name + "/" + dylibs_found[i], ent_path, false);
  1207. }
  1208. }
  1209. }
  1210. if (err == OK && sign_enabled) {
  1211. if (ep.step(TTR("Code signing bundle"), 2)) {
  1212. return ERR_SKIP;
  1213. }
  1214. err = _code_sign(p_preset, tmp_app_path_name, ent_path);
  1215. }
  1216. if (export_format == "dmg") {
  1217. // Create a DMG.
  1218. if (err == OK) {
  1219. if (ep.step(TTR("Making DMG"), 3)) {
  1220. return ERR_SKIP;
  1221. }
  1222. err = _create_dmg(p_path, pkg_name, tmp_base_path_name);
  1223. }
  1224. // Sign DMG.
  1225. if (err == OK && sign_enabled && !ad_hoc) {
  1226. if (ep.step(TTR("Code signing DMG"), 3)) {
  1227. return ERR_SKIP;
  1228. }
  1229. err = _code_sign(p_preset, p_path, ent_path, false);
  1230. }
  1231. } else if (export_format == "zip") {
  1232. // Create ZIP.
  1233. if (err == OK) {
  1234. if (ep.step(TTR("Making ZIP"), 3)) {
  1235. return ERR_SKIP;
  1236. }
  1237. if (FileAccess::exists(p_path)) {
  1238. OS::get_singleton()->move_to_trash(p_path);
  1239. }
  1240. Ref<FileAccess> io_fa_dst;
  1241. zlib_filefunc_def io_dst = zipio_create_io(&io_fa_dst);
  1242. zipFile zip = zipOpen2(p_path.utf8().get_data(), APPEND_STATUS_CREATE, nullptr, &io_dst);
  1243. _zip_folder_recursive(zip, tmp_base_path_name, "", pkg_name);
  1244. zipClose(zip, nullptr);
  1245. }
  1246. }
  1247. #ifdef MACOS_ENABLED
  1248. bool noto_enabled = p_preset->get("notarization/enable");
  1249. if (err == OK && noto_enabled) {
  1250. if (export_format == "app") {
  1251. add_message(EXPORT_MESSAGE_INFO, TTR("Notarization"), TTR("Notarization requires the app to be archived first, select the DMG or ZIP export format instead."));
  1252. } else {
  1253. if (ep.step(TTR("Sending archive for notarization"), 4)) {
  1254. return ERR_SKIP;
  1255. }
  1256. err = _notarize(p_preset, p_path);
  1257. }
  1258. }
  1259. #endif
  1260. // Clean up temporary entitlements files.
  1261. DirAccess::remove_file_or_error(hlp_ent_path);
  1262. // Clean up temporary .app dir and generated entitlements.
  1263. if ((String)(p_preset->get("codesign/entitlements/custom_file")) == "") {
  1264. tmp_app_dir->remove(ent_path);
  1265. }
  1266. if (export_format != "app") {
  1267. if (tmp_app_dir->change_dir(tmp_base_path_name) == OK) {
  1268. tmp_app_dir->erase_contents_recursive();
  1269. tmp_app_dir->change_dir("..");
  1270. tmp_app_dir->remove(pkg_name);
  1271. }
  1272. }
  1273. }
  1274. return err;
  1275. }
  1276. void EditorExportPlatformMacOS::_zip_folder_recursive(zipFile &p_zip, const String &p_root_path, const String &p_folder, const String &p_pkg_name) {
  1277. String dir = p_folder.is_empty() ? p_root_path : p_root_path.plus_file(p_folder);
  1278. Ref<DirAccess> da = DirAccess::open(dir);
  1279. da->list_dir_begin();
  1280. String f = da->get_next();
  1281. while (!f.is_empty()) {
  1282. if (f == "." || f == "..") {
  1283. f = da->get_next();
  1284. continue;
  1285. }
  1286. if (da->is_link(f)) {
  1287. OS::Time time = OS::get_singleton()->get_time();
  1288. OS::Date date = OS::get_singleton()->get_date();
  1289. zip_fileinfo zipfi;
  1290. zipfi.tmz_date.tm_hour = time.hour;
  1291. zipfi.tmz_date.tm_mday = date.day;
  1292. zipfi.tmz_date.tm_min = time.minute;
  1293. zipfi.tmz_date.tm_mon = date.month - 1; // Note: "tm" month range - 0..11, Godot month range - 1..12, https://www.cplusplus.com/reference/ctime/tm/
  1294. zipfi.tmz_date.tm_sec = time.second;
  1295. zipfi.tmz_date.tm_year = date.year;
  1296. zipfi.dosDate = 0;
  1297. // 0120000: symbolic link type
  1298. // 0000755: permissions rwxr-xr-x
  1299. // 0000644: permissions rw-r--r--
  1300. uint32_t _mode = 0120644;
  1301. zipfi.external_fa = (_mode << 16L) | !(_mode & 0200);
  1302. zipfi.internal_fa = 0;
  1303. zipOpenNewFileInZip4(p_zip,
  1304. p_folder.plus_file(f).utf8().get_data(),
  1305. &zipfi,
  1306. nullptr,
  1307. 0,
  1308. nullptr,
  1309. 0,
  1310. nullptr,
  1311. Z_DEFLATED,
  1312. Z_DEFAULT_COMPRESSION,
  1313. 0,
  1314. -MAX_WBITS,
  1315. DEF_MEM_LEVEL,
  1316. Z_DEFAULT_STRATEGY,
  1317. nullptr,
  1318. 0,
  1319. 0x0314, // "version made by", 0x03 - Unix, 0x14 - ZIP specification version 2.0, required to store Unix file permissions
  1320. 0);
  1321. String target = da->read_link(f);
  1322. zipWriteInFileInZip(p_zip, target.utf8().get_data(), target.utf8().size());
  1323. zipCloseFileInZip(p_zip);
  1324. } else if (da->current_is_dir()) {
  1325. _zip_folder_recursive(p_zip, p_root_path, p_folder.plus_file(f), p_pkg_name);
  1326. } else {
  1327. bool is_executable = (p_folder.ends_with("MacOS") && (f == p_pkg_name)) || p_folder.ends_with("Helpers") || f.ends_with(".command");
  1328. OS::Time time = OS::get_singleton()->get_time();
  1329. OS::Date date = OS::get_singleton()->get_date();
  1330. zip_fileinfo zipfi;
  1331. zipfi.tmz_date.tm_hour = time.hour;
  1332. zipfi.tmz_date.tm_mday = date.day;
  1333. zipfi.tmz_date.tm_min = time.minute;
  1334. zipfi.tmz_date.tm_mon = date.month - 1; // Note: "tm" month range - 0..11, Godot month range - 1..12, https://www.cplusplus.com/reference/ctime/tm/
  1335. zipfi.tmz_date.tm_sec = time.second;
  1336. zipfi.tmz_date.tm_year = date.year;
  1337. zipfi.dosDate = 0;
  1338. // 0100000: regular file type
  1339. // 0000755: permissions rwxr-xr-x
  1340. // 0000644: permissions rw-r--r--
  1341. uint32_t _mode = (is_executable ? 0100755 : 0100644);
  1342. zipfi.external_fa = (_mode << 16L) | !(_mode & 0200);
  1343. zipfi.internal_fa = 0;
  1344. zipOpenNewFileInZip4(p_zip,
  1345. p_folder.plus_file(f).utf8().get_data(),
  1346. &zipfi,
  1347. nullptr,
  1348. 0,
  1349. nullptr,
  1350. 0,
  1351. nullptr,
  1352. Z_DEFLATED,
  1353. Z_DEFAULT_COMPRESSION,
  1354. 0,
  1355. -MAX_WBITS,
  1356. DEF_MEM_LEVEL,
  1357. Z_DEFAULT_STRATEGY,
  1358. nullptr,
  1359. 0,
  1360. 0x0314, // "version made by", 0x03 - Unix, 0x14 - ZIP specification version 2.0, required to store Unix file permissions
  1361. 0);
  1362. Ref<FileAccess> fa = FileAccess::open(dir.plus_file(f), FileAccess::READ);
  1363. if (fa.is_null()) {
  1364. add_message(EXPORT_MESSAGE_ERROR, TTR("ZIP Creation"), vformat(TTR("Could not open file to read from path \"%s\"."), dir.plus_file(f)));
  1365. return;
  1366. }
  1367. const int bufsize = 16384;
  1368. uint8_t buf[bufsize];
  1369. while (true) {
  1370. uint64_t got = fa->get_buffer(buf, bufsize);
  1371. if (got == 0) {
  1372. break;
  1373. }
  1374. zipWriteInFileInZip(p_zip, buf, got);
  1375. }
  1376. zipCloseFileInZip(p_zip);
  1377. }
  1378. f = da->get_next();
  1379. }
  1380. da->list_dir_end();
  1381. }
  1382. bool EditorExportPlatformMacOS::has_valid_export_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const {
  1383. String err;
  1384. bool valid = false;
  1385. // Look for export templates (custom templates).
  1386. bool dvalid = false;
  1387. bool rvalid = false;
  1388. if (p_preset->get("custom_template/debug") != "") {
  1389. dvalid = FileAccess::exists(p_preset->get("custom_template/debug"));
  1390. if (!dvalid) {
  1391. err += TTR("Custom debug template not found.") + "\n";
  1392. }
  1393. }
  1394. if (p_preset->get("custom_template/release") != "") {
  1395. rvalid = FileAccess::exists(p_preset->get("custom_template/release"));
  1396. if (!rvalid) {
  1397. err += TTR("Custom release template not found.") + "\n";
  1398. }
  1399. }
  1400. // Look for export templates (official templates, check only is custom templates are not set).
  1401. if (!dvalid || !rvalid) {
  1402. dvalid = exists_export_template("macos.zip", &err);
  1403. rvalid = dvalid; // Both in the same ZIP.
  1404. }
  1405. valid = dvalid || rvalid;
  1406. r_missing_templates = !valid;
  1407. if (!err.is_empty()) {
  1408. r_error = err;
  1409. }
  1410. return valid;
  1411. }
  1412. bool EditorExportPlatformMacOS::has_valid_project_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error) const {
  1413. String err;
  1414. bool valid = true;
  1415. String identifier = p_preset->get("application/bundle_identifier");
  1416. String pn_err;
  1417. if (!is_package_name_valid(identifier, &pn_err)) {
  1418. err += TTR("Invalid bundle identifier:") + " " + pn_err + "\n";
  1419. valid = false;
  1420. }
  1421. bool sign_enabled = p_preset->get("codesign/enable");
  1422. #ifdef MACOS_ENABLED
  1423. bool noto_enabled = p_preset->get("notarization/enable");
  1424. bool ad_hoc = ((p_preset->get("codesign/identity") == "") || (p_preset->get("codesign/identity") == "-"));
  1425. if (!ad_hoc && (bool)EditorSettings::get_singleton()->get("export/macos/force_builtin_codesign")) {
  1426. err += TTR("Warning: Built-in \"codesign\" is selected in the Editor Settings. Code signing is limited to ad-hoc signature only.") + "\n";
  1427. }
  1428. if (!ad_hoc && !FileAccess::exists("/usr/bin/codesign") && !FileAccess::exists("/bin/codesign")) {
  1429. err += TTR("Warning: Xcode command line tools are not installed, using built-in \"codesign\". Code signing is limited to ad-hoc signature only.") + "\n";
  1430. }
  1431. if (noto_enabled) {
  1432. if (ad_hoc) {
  1433. err += TTR("Notarization: Notarization with an ad-hoc signature is not supported.") + "\n";
  1434. valid = false;
  1435. }
  1436. if (!sign_enabled) {
  1437. err += TTR("Notarization: Code signing is required for notarization.") + "\n";
  1438. valid = false;
  1439. }
  1440. if (!(bool)p_preset->get("codesign/hardened_runtime")) {
  1441. err += TTR("Notarization: Hardened runtime is required for notarization.") + "\n";
  1442. valid = false;
  1443. }
  1444. if (!(bool)p_preset->get("codesign/timestamp")) {
  1445. err += TTR("Notarization: Timestamping is required for notarization.") + "\n";
  1446. valid = false;
  1447. }
  1448. if (p_preset->get("notarization/apple_id_name") == "") {
  1449. err += TTR("Notarization: Apple ID name not specified.") + "\n";
  1450. valid = false;
  1451. }
  1452. if (p_preset->get("notarization/apple_id_password") == "") {
  1453. err += TTR("Notarization: Apple ID password not specified.") + "\n";
  1454. valid = false;
  1455. }
  1456. } else {
  1457. err += TTR("Warning: Notarization is disabled. The exported project will be blocked by Gatekeeper if it's downloaded from an unknown source.") + "\n";
  1458. if (!sign_enabled) {
  1459. err += TTR("Code signing is disabled. The exported project will not run on Macs with enabled Gatekeeper and Apple Silicon powered Macs.") + "\n";
  1460. } else {
  1461. if ((bool)p_preset->get("codesign/hardened_runtime") && ad_hoc) {
  1462. err += TTR("Hardened Runtime is not compatible with ad-hoc signature, and will be disabled!") + "\n";
  1463. }
  1464. if ((bool)p_preset->get("codesign/timestamp") && ad_hoc) {
  1465. err += TTR("Timestamping is not compatible with ad-hoc signature, and will be disabled!") + "\n";
  1466. }
  1467. }
  1468. }
  1469. #else
  1470. err += TTR("Warning: Notarization is not supported from this OS. The exported project will be blocked by Gatekeeper if it's downloaded from an unknown source.") + "\n";
  1471. if (!sign_enabled) {
  1472. err += TTR("Code signing is disabled. The exported project will not run on Macs with enabled Gatekeeper and Apple Silicon powered Macs.") + "\n";
  1473. }
  1474. #endif
  1475. if (sign_enabled) {
  1476. if ((bool)p_preset->get("codesign/entitlements/audio_input") && ((String)p_preset->get("privacy/microphone_usage_description")).is_empty()) {
  1477. err += TTR("Privacy: Microphone access is enabled, but usage description is not specified.") + "\n";
  1478. valid = false;
  1479. }
  1480. if ((bool)p_preset->get("codesign/entitlements/camera") && ((String)p_preset->get("privacy/camera_usage_description")).is_empty()) {
  1481. err += TTR("Privacy: Camera access is enabled, but usage description is not specified.") + "\n";
  1482. valid = false;
  1483. }
  1484. if ((bool)p_preset->get("codesign/entitlements/location") && ((String)p_preset->get("privacy/location_usage_description")).is_empty()) {
  1485. err += TTR("Privacy: Location information access is enabled, but usage description is not specified.") + "\n";
  1486. valid = false;
  1487. }
  1488. if ((bool)p_preset->get("codesign/entitlements/address_book") && ((String)p_preset->get("privacy/address_book_usage_description")).is_empty()) {
  1489. err += TTR("Privacy: Address book access is enabled, but usage description is not specified.") + "\n";
  1490. valid = false;
  1491. }
  1492. if ((bool)p_preset->get("codesign/entitlements/calendars") && ((String)p_preset->get("privacy/calendar_usage_description")).is_empty()) {
  1493. err += TTR("Privacy: Calendar access is enabled, but usage description is not specified.") + "\n";
  1494. valid = false;
  1495. }
  1496. if ((bool)p_preset->get("codesign/entitlements/photos_library") && ((String)p_preset->get("privacy/photos_library_usage_description")).is_empty()) {
  1497. err += TTR("Privacy: Photo library access is enabled, but usage description is not specified.") + "\n";
  1498. valid = false;
  1499. }
  1500. }
  1501. if (!err.is_empty()) {
  1502. r_error = err;
  1503. }
  1504. return valid;
  1505. }
  1506. EditorExportPlatformMacOS::EditorExportPlatformMacOS() {
  1507. logo = ImageTexture::create_from_image(memnew(Image(_macos_logo)));
  1508. }
  1509. EditorExportPlatformMacOS::~EditorExportPlatformMacOS() {
  1510. }