asset_library_editor_plugin.cpp 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581
  1. /*************************************************************************/
  2. /* asset_library_editor_plugin.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 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 "asset_library_editor_plugin.h"
  31. #include "core/io/json.h"
  32. #include "core/version.h"
  33. #include "editor/editor_node.h"
  34. #include "editor/editor_scale.h"
  35. #include "editor/editor_settings.h"
  36. #include "editor/project_settings_editor.h"
  37. void EditorAssetLibraryItem::configure(const String &p_title, int p_asset_id, const String &p_category, int p_category_id, const String &p_author, int p_author_id, const String &p_cost) {
  38. title->set_text(p_title);
  39. asset_id = p_asset_id;
  40. category->set_text(p_category);
  41. category_id = p_category_id;
  42. author->set_text(p_author);
  43. author_id = p_author_id;
  44. price->set_text(p_cost);
  45. }
  46. void EditorAssetLibraryItem::set_image(int p_type, int p_index, const Ref<Texture> &p_image) {
  47. ERR_FAIL_COND(p_type != EditorAssetLibrary::IMAGE_QUEUE_ICON);
  48. ERR_FAIL_COND(p_index != 0);
  49. icon->set_normal_texture(p_image);
  50. }
  51. void EditorAssetLibraryItem::_notification(int p_what) {
  52. if (p_what == NOTIFICATION_ENTER_TREE) {
  53. icon->set_normal_texture(get_icon("ProjectIconLoading", "EditorIcons"));
  54. category->add_color_override("font_color", Color(0.5, 0.5, 0.5));
  55. author->add_color_override("font_color", Color(0.5, 0.5, 0.5));
  56. price->add_color_override("font_color", Color(0.5, 0.5, 0.5));
  57. }
  58. }
  59. void EditorAssetLibraryItem::_asset_clicked() {
  60. emit_signal("asset_selected", asset_id);
  61. }
  62. void EditorAssetLibraryItem::_category_clicked() {
  63. emit_signal("category_selected", category_id);
  64. }
  65. void EditorAssetLibraryItem::_author_clicked() {
  66. emit_signal("author_selected", author_id);
  67. }
  68. void EditorAssetLibraryItem::_bind_methods() {
  69. ClassDB::bind_method("set_image", &EditorAssetLibraryItem::set_image);
  70. ClassDB::bind_method("_asset_clicked", &EditorAssetLibraryItem::_asset_clicked);
  71. ClassDB::bind_method("_category_clicked", &EditorAssetLibraryItem::_category_clicked);
  72. ClassDB::bind_method("_author_clicked", &EditorAssetLibraryItem::_author_clicked);
  73. ADD_SIGNAL(MethodInfo("asset_selected"));
  74. ADD_SIGNAL(MethodInfo("category_selected"));
  75. ADD_SIGNAL(MethodInfo("author_selected"));
  76. }
  77. EditorAssetLibraryItem::EditorAssetLibraryItem() {
  78. Ref<StyleBoxEmpty> border;
  79. border.instance();
  80. border->set_default_margin(MARGIN_LEFT, 5 * EDSCALE);
  81. border->set_default_margin(MARGIN_RIGHT, 5 * EDSCALE);
  82. border->set_default_margin(MARGIN_BOTTOM, 5 * EDSCALE);
  83. border->set_default_margin(MARGIN_TOP, 5 * EDSCALE);
  84. add_style_override("panel", border);
  85. HBoxContainer *hb = memnew(HBoxContainer);
  86. // Add some spacing to visually separate the icon from the asset details.
  87. hb->add_constant_override("separation", 15 * EDSCALE);
  88. add_child(hb);
  89. icon = memnew(TextureButton);
  90. icon->set_custom_minimum_size(Size2(64, 64) * EDSCALE);
  91. icon->set_default_cursor_shape(CURSOR_POINTING_HAND);
  92. icon->connect("pressed", this, "_asset_clicked");
  93. hb->add_child(icon);
  94. VBoxContainer *vb = memnew(VBoxContainer);
  95. hb->add_child(vb);
  96. vb->set_h_size_flags(SIZE_EXPAND_FILL);
  97. title = memnew(LinkButton);
  98. title->set_underline_mode(LinkButton::UNDERLINE_MODE_ON_HOVER);
  99. title->connect("pressed", this, "_asset_clicked");
  100. vb->add_child(title);
  101. category = memnew(LinkButton);
  102. category->set_underline_mode(LinkButton::UNDERLINE_MODE_ON_HOVER);
  103. category->connect("pressed", this, "_category_clicked");
  104. vb->add_child(category);
  105. author = memnew(LinkButton);
  106. author->set_underline_mode(LinkButton::UNDERLINE_MODE_ON_HOVER);
  107. author->connect("pressed", this, "_author_clicked");
  108. vb->add_child(author);
  109. price = memnew(Label);
  110. vb->add_child(price);
  111. set_custom_minimum_size(Size2(250, 100) * EDSCALE);
  112. set_h_size_flags(SIZE_EXPAND_FILL);
  113. set_mouse_filter(MOUSE_FILTER_PASS);
  114. }
  115. //////////////////////////////////////////////////////////////////////////////
  116. void EditorAssetLibraryItemDescription::set_image(int p_type, int p_index, const Ref<Texture> &p_image) {
  117. switch (p_type) {
  118. case EditorAssetLibrary::IMAGE_QUEUE_ICON: {
  119. item->call("set_image", p_type, p_index, p_image);
  120. icon = p_image;
  121. } break;
  122. case EditorAssetLibrary::IMAGE_QUEUE_THUMBNAIL: {
  123. for (int i = 0; i < preview_images.size(); i++) {
  124. if (preview_images[i].id == p_index) {
  125. if (preview_images[i].is_video) {
  126. Ref<Image> overlay = get_icon("PlayOverlay", "EditorIcons")->get_data();
  127. Ref<Image> thumbnail = p_image->get_data();
  128. thumbnail = thumbnail->duplicate();
  129. Point2 overlay_pos = Point2((thumbnail->get_width() - overlay->get_width()) / 2, (thumbnail->get_height() - overlay->get_height()) / 2);
  130. // Overlay and thumbnail need the same format for `blend_rect` to work.
  131. thumbnail->convert(Image::FORMAT_RGBA8);
  132. thumbnail->lock();
  133. thumbnail->blend_rect(overlay, overlay->get_used_rect(), overlay_pos);
  134. thumbnail->unlock();
  135. Ref<ImageTexture> tex;
  136. tex.instance();
  137. tex->create_from_image(thumbnail);
  138. preview_images[i].button->set_icon(tex);
  139. // Make it clearer that clicking it will open an external link
  140. preview_images[i].button->set_default_cursor_shape(CURSOR_POINTING_HAND);
  141. } else {
  142. preview_images[i].button->set_icon(p_image);
  143. }
  144. break;
  145. }
  146. }
  147. } break;
  148. case EditorAssetLibrary::IMAGE_QUEUE_SCREENSHOT: {
  149. for (int i = 0; i < preview_images.size(); i++) {
  150. if (preview_images[i].id == p_index) {
  151. preview_images.write[i].image = p_image;
  152. if (preview_images[i].button->is_pressed()) {
  153. _preview_click(p_index);
  154. }
  155. break;
  156. }
  157. }
  158. } break;
  159. }
  160. }
  161. void EditorAssetLibraryItemDescription::_notification(int p_what) {
  162. switch (p_what) {
  163. case NOTIFICATION_ENTER_TREE: {
  164. previews_bg->add_style_override("panel", get_stylebox("normal", "TextEdit"));
  165. } break;
  166. }
  167. }
  168. void EditorAssetLibraryItemDescription::_bind_methods() {
  169. ClassDB::bind_method(D_METHOD("set_image"), &EditorAssetLibraryItemDescription::set_image);
  170. ClassDB::bind_method(D_METHOD("_link_click"), &EditorAssetLibraryItemDescription::_link_click);
  171. ClassDB::bind_method(D_METHOD("_preview_click"), &EditorAssetLibraryItemDescription::_preview_click);
  172. }
  173. void EditorAssetLibraryItemDescription::_link_click(const String &p_url) {
  174. ERR_FAIL_COND(!p_url.begins_with("http"));
  175. OS::get_singleton()->shell_open(p_url);
  176. }
  177. void EditorAssetLibraryItemDescription::_preview_click(int p_id) {
  178. for (int i = 0; i < preview_images.size(); i++) {
  179. if (preview_images[i].id == p_id) {
  180. preview_images[i].button->set_pressed(true);
  181. if (!preview_images[i].is_video) {
  182. if (preview_images[i].image.is_valid()) {
  183. preview->set_texture(preview_images[i].image);
  184. minimum_size_changed();
  185. }
  186. } else {
  187. _link_click(preview_images[i].video_link);
  188. }
  189. } else {
  190. preview_images[i].button->set_pressed(false);
  191. }
  192. }
  193. }
  194. void EditorAssetLibraryItemDescription::configure(const String &p_title, int p_asset_id, const String &p_category, int p_category_id, const String &p_author, int p_author_id, const String &p_cost, int p_version, const String &p_version_string, const String &p_description, const String &p_download_url, const String &p_browse_url, const String &p_sha256_hash) {
  195. asset_id = p_asset_id;
  196. title = p_title;
  197. download_url = p_download_url;
  198. sha256 = p_sha256_hash;
  199. item->configure(p_title, p_asset_id, p_category, p_category_id, p_author, p_author_id, p_cost);
  200. description->clear();
  201. description->add_text(TTR("Version:") + " " + p_version_string + "\n");
  202. description->add_text(TTR("Contents:") + " ");
  203. description->push_meta(p_browse_url);
  204. description->add_text(TTR("View Files"));
  205. description->pop();
  206. description->add_text("\n" + TTR("Description:") + "\n\n");
  207. description->append_bbcode(p_description);
  208. set_title(p_title);
  209. }
  210. void EditorAssetLibraryItemDescription::add_preview(int p_id, bool p_video, const String &p_url) {
  211. Preview preview;
  212. preview.id = p_id;
  213. preview.video_link = p_url;
  214. preview.is_video = p_video;
  215. preview.button = memnew(Button);
  216. preview.button->set_flat(true);
  217. preview.button->set_icon(get_icon("ThumbnailWait", "EditorIcons"));
  218. preview.button->set_toggle_mode(true);
  219. preview.button->connect("pressed", this, "_preview_click", varray(p_id));
  220. preview_hb->add_child(preview.button);
  221. if (!p_video) {
  222. preview.image = get_icon("ThumbnailWait", "EditorIcons");
  223. }
  224. preview_images.push_back(preview);
  225. if (preview_images.size() == 1 && !p_video) {
  226. _preview_click(p_id);
  227. }
  228. }
  229. EditorAssetLibraryItemDescription::EditorAssetLibraryItemDescription() {
  230. HBoxContainer *hbox = memnew(HBoxContainer);
  231. add_child(hbox);
  232. VBoxContainer *desc_vbox = memnew(VBoxContainer);
  233. hbox->add_child(desc_vbox);
  234. hbox->add_constant_override("separation", 15 * EDSCALE);
  235. item = memnew(EditorAssetLibraryItem);
  236. desc_vbox->add_child(item);
  237. desc_vbox->set_custom_minimum_size(Size2(440 * EDSCALE, 0));
  238. description = memnew(RichTextLabel);
  239. desc_vbox->add_child(description);
  240. description->set_v_size_flags(SIZE_EXPAND_FILL);
  241. description->connect("meta_clicked", this, "_link_click");
  242. description->add_constant_override("line_separation", Math::round(5 * EDSCALE));
  243. VBoxContainer *previews_vbox = memnew(VBoxContainer);
  244. hbox->add_child(previews_vbox);
  245. previews_vbox->add_constant_override("separation", 15 * EDSCALE);
  246. previews_vbox->set_v_size_flags(SIZE_EXPAND_FILL);
  247. preview = memnew(TextureRect);
  248. previews_vbox->add_child(preview);
  249. preview->set_expand(true);
  250. preview->set_stretch_mode(TextureRect::STRETCH_KEEP_ASPECT_CENTERED);
  251. preview->set_custom_minimum_size(Size2(640 * EDSCALE, 345 * EDSCALE));
  252. previews_bg = memnew(PanelContainer);
  253. previews_vbox->add_child(previews_bg);
  254. previews_bg->set_custom_minimum_size(Size2(640 * EDSCALE, 101 * EDSCALE));
  255. previews = memnew(ScrollContainer);
  256. previews_bg->add_child(previews);
  257. previews->set_enable_v_scroll(false);
  258. previews->set_enable_h_scroll(true);
  259. preview_hb = memnew(HBoxContainer);
  260. preview_hb->set_v_size_flags(SIZE_EXPAND_FILL);
  261. previews->add_child(preview_hb);
  262. get_ok()->set_text(TTR("Download"));
  263. get_cancel()->set_text(TTR("Close"));
  264. }
  265. ///////////////////////////////////////////////////////////////////////////////////
  266. void EditorAssetLibraryItemDownload::_http_download_completed(int p_status, int p_code, const PoolStringArray &headers, const PoolByteArray &p_data) {
  267. String error_text;
  268. switch (p_status) {
  269. case HTTPRequest::RESULT_CHUNKED_BODY_SIZE_MISMATCH:
  270. case HTTPRequest::RESULT_CONNECTION_ERROR:
  271. case HTTPRequest::RESULT_BODY_SIZE_LIMIT_EXCEEDED: {
  272. error_text = TTR("Connection error, please try again.");
  273. status->set_text(TTR("Can't connect."));
  274. } break;
  275. case HTTPRequest::RESULT_CANT_CONNECT:
  276. case HTTPRequest::RESULT_SSL_HANDSHAKE_ERROR: {
  277. error_text = TTR("Can't connect to host:") + " " + host;
  278. status->set_text(TTR("Can't connect."));
  279. } break;
  280. case HTTPRequest::RESULT_NO_RESPONSE: {
  281. error_text = TTR("No response from host:") + " " + host;
  282. status->set_text(TTR("No response."));
  283. } break;
  284. case HTTPRequest::RESULT_CANT_RESOLVE: {
  285. error_text = TTR("Can't resolve hostname:") + " " + host;
  286. status->set_text(TTR("Can't resolve."));
  287. } break;
  288. case HTTPRequest::RESULT_REQUEST_FAILED: {
  289. error_text = TTR("Request failed, return code:") + " " + itos(p_code);
  290. status->set_text(TTR("Request failed."));
  291. } break;
  292. case HTTPRequest::RESULT_DOWNLOAD_FILE_CANT_OPEN:
  293. case HTTPRequest::RESULT_DOWNLOAD_FILE_WRITE_ERROR: {
  294. error_text = TTR("Cannot save response to:") + " " + download->get_download_file();
  295. status->set_text(TTR("Write error."));
  296. } break;
  297. case HTTPRequest::RESULT_REDIRECT_LIMIT_REACHED: {
  298. error_text = TTR("Request failed, too many redirects");
  299. status->set_text(TTR("Redirect loop."));
  300. } break;
  301. case HTTPRequest::RESULT_TIMEOUT: {
  302. error_text = TTR("Request failed, timeout");
  303. status->set_text(TTR("Timeout."));
  304. } break;
  305. default: {
  306. if (p_code != 200) {
  307. error_text = TTR("Request failed, return code:") + " " + itos(p_code);
  308. status->set_text(TTR("Failed:") + " " + itos(p_code));
  309. } else if (sha256 != "") {
  310. String download_sha256 = FileAccess::get_sha256(download->get_download_file());
  311. if (sha256 != download_sha256) {
  312. error_text = TTR("Bad download hash, assuming file has been tampered with.") + "\n";
  313. error_text += TTR("Expected:") + " " + sha256 + "\n" + TTR("Got:") + " " + download_sha256;
  314. status->set_text(TTR("Failed SHA-256 hash check"));
  315. }
  316. }
  317. } break;
  318. }
  319. if (error_text != String()) {
  320. download_error->set_text(TTR("Asset Download Error:") + "\n" + error_text);
  321. download_error->popup_centered_minsize();
  322. // Let the user retry the download.
  323. retry->show();
  324. return;
  325. }
  326. install->set_disabled(false);
  327. status->set_text(TTR("Success!"));
  328. // Make the progress bar invisible but don't reflow other Controls around it.
  329. progress->set_modulate(Color(0, 0, 0, 0));
  330. set_process(false);
  331. }
  332. void EditorAssetLibraryItemDownload::configure(const String &p_title, int p_asset_id, const Ref<Texture> &p_preview, const String &p_download_url, const String &p_sha256_hash) {
  333. title->set_text(p_title);
  334. icon->set_texture(p_preview);
  335. asset_id = p_asset_id;
  336. if (!p_preview.is_valid())
  337. icon->set_texture(get_icon("FileBrokenBigThumb", "EditorIcons"));
  338. host = p_download_url;
  339. sha256 = p_sha256_hash;
  340. _make_request();
  341. }
  342. void EditorAssetLibraryItemDownload::_notification(int p_what) {
  343. switch (p_what) {
  344. // FIXME: The editor crashes if 'NOTICATION_THEME_CHANGED' is used.
  345. case NOTIFICATION_ENTER_TREE: {
  346. add_style_override("panel", get_stylebox("panel", "TabContainer"));
  347. dismiss->set_normal_texture(get_icon("Close", "EditorIcons"));
  348. } break;
  349. case NOTIFICATION_PROCESS: {
  350. // Make the progress bar visible again when retrying the download.
  351. progress->set_modulate(Color(1, 1, 1, 1));
  352. if (download->get_downloaded_bytes() > 0) {
  353. progress->set_max(download->get_body_size());
  354. progress->set_value(download->get_downloaded_bytes());
  355. }
  356. int cstatus = download->get_http_client_status();
  357. if (cstatus == HTTPClient::STATUS_BODY) {
  358. if (download->get_body_size() > 0) {
  359. status->set_text(vformat(
  360. TTR("Downloading (%s / %s)..."),
  361. String::humanize_size(download->get_downloaded_bytes()),
  362. String::humanize_size(download->get_body_size())));
  363. } else {
  364. // Total file size is unknown, so it cannot be displayed.
  365. progress->set_modulate(Color(0, 0, 0, 0));
  366. status->set_text(vformat(
  367. TTR("Downloading...") + " (%s)",
  368. String::humanize_size(download->get_downloaded_bytes())));
  369. }
  370. }
  371. if (cstatus != prev_status) {
  372. switch (cstatus) {
  373. case HTTPClient::STATUS_RESOLVING: {
  374. status->set_text(TTR("Resolving..."));
  375. progress->set_max(1);
  376. progress->set_value(0);
  377. } break;
  378. case HTTPClient::STATUS_CONNECTING: {
  379. status->set_text(TTR("Connecting..."));
  380. progress->set_max(1);
  381. progress->set_value(0);
  382. } break;
  383. case HTTPClient::STATUS_REQUESTING: {
  384. status->set_text(TTR("Requesting..."));
  385. progress->set_max(1);
  386. progress->set_value(0);
  387. } break;
  388. default: {
  389. }
  390. }
  391. prev_status = cstatus;
  392. }
  393. } break;
  394. }
  395. }
  396. void EditorAssetLibraryItemDownload::_close() {
  397. // Clean up downloaded file.
  398. DirAccess::remove_file_or_error(download->get_download_file());
  399. queue_delete();
  400. }
  401. void EditorAssetLibraryItemDownload::_install() {
  402. String file = download->get_download_file();
  403. if (external_install) {
  404. emit_signal("install_asset", file, title->get_text());
  405. return;
  406. }
  407. asset_installer->open(file, 1);
  408. }
  409. void EditorAssetLibraryItemDownload::_make_request() {
  410. // Hide the Retry button if we've just pressed it.
  411. retry->hide();
  412. download->cancel_request();
  413. download->set_download_file(EditorSettings::get_singleton()->get_cache_dir().plus_file("tmp_asset_" + itos(asset_id)) + ".zip");
  414. Error err = download->request(host);
  415. if (err != OK) {
  416. status->set_text(TTR("Error making request"));
  417. } else {
  418. set_process(true);
  419. }
  420. }
  421. void EditorAssetLibraryItemDownload::_bind_methods() {
  422. ClassDB::bind_method("_http_download_completed", &EditorAssetLibraryItemDownload::_http_download_completed);
  423. ClassDB::bind_method("_install", &EditorAssetLibraryItemDownload::_install);
  424. ClassDB::bind_method("_close", &EditorAssetLibraryItemDownload::_close);
  425. ClassDB::bind_method("_make_request", &EditorAssetLibraryItemDownload::_make_request);
  426. ADD_SIGNAL(MethodInfo("install_asset", PropertyInfo(Variant::STRING, "zip_path"), PropertyInfo(Variant::STRING, "name")));
  427. }
  428. EditorAssetLibraryItemDownload::EditorAssetLibraryItemDownload() {
  429. HBoxContainer *hb = memnew(HBoxContainer);
  430. add_child(hb);
  431. icon = memnew(TextureRect);
  432. hb->add_child(icon);
  433. VBoxContainer *vb = memnew(VBoxContainer);
  434. hb->add_child(vb);
  435. vb->set_h_size_flags(SIZE_EXPAND_FILL);
  436. HBoxContainer *title_hb = memnew(HBoxContainer);
  437. vb->add_child(title_hb);
  438. title = memnew(Label);
  439. title_hb->add_child(title);
  440. title->set_h_size_flags(SIZE_EXPAND_FILL);
  441. dismiss = memnew(TextureButton);
  442. dismiss->connect("pressed", this, "_close");
  443. title_hb->add_child(dismiss);
  444. title->set_clip_text(true);
  445. vb->add_spacer();
  446. status = memnew(Label(TTR("Idle")));
  447. vb->add_child(status);
  448. status->add_color_override("font_color", Color(0.5, 0.5, 0.5));
  449. progress = memnew(ProgressBar);
  450. vb->add_child(progress);
  451. HBoxContainer *hb2 = memnew(HBoxContainer);
  452. vb->add_child(hb2);
  453. hb2->add_spacer();
  454. install = memnew(Button);
  455. install->set_text(TTR("Install..."));
  456. install->set_disabled(true);
  457. install->connect("pressed", this, "_install");
  458. retry = memnew(Button);
  459. retry->set_text(TTR("Retry"));
  460. retry->connect("pressed", this, "_make_request");
  461. // Only show the Retry button in case of a failure.
  462. retry->hide();
  463. hb2->add_child(retry);
  464. hb2->add_child(install);
  465. set_custom_minimum_size(Size2(310, 0) * EDSCALE);
  466. download = memnew(HTTPRequest);
  467. add_child(download);
  468. download->connect("request_completed", this, "_http_download_completed");
  469. download->set_use_threads(EDITOR_DEF("asset_library/use_threads", true));
  470. download_error = memnew(AcceptDialog);
  471. add_child(download_error);
  472. download_error->set_title(TTR("Download Error"));
  473. asset_installer = memnew(EditorAssetInstaller);
  474. add_child(asset_installer);
  475. asset_installer->connect("confirmed", this, "_close");
  476. prev_status = -1;
  477. external_install = false;
  478. }
  479. ////////////////////////////////////////////////////////////////////////////////
  480. void EditorAssetLibrary::_notification(int p_what) {
  481. switch (p_what) {
  482. case NOTIFICATION_READY: {
  483. error_tr->set_texture(get_icon("Error", "EditorIcons"));
  484. filter->set_right_icon(get_icon("Search", "EditorIcons"));
  485. filter->set_clear_button_enabled(true);
  486. error_label->raise();
  487. } break;
  488. case NOTIFICATION_VISIBILITY_CHANGED: {
  489. if (is_visible() && initial_loading) {
  490. _repository_changed(0); // Update when shown for the first time.
  491. }
  492. } break;
  493. case NOTIFICATION_PROCESS: {
  494. HTTPClient::Status s = request->get_http_client_status();
  495. const bool loading = s != HTTPClient::STATUS_DISCONNECTED;
  496. if (loading) {
  497. library_scroll->set_modulate(Color(1, 1, 1, 0.5));
  498. } else {
  499. library_scroll->set_modulate(Color(1, 1, 1, 1));
  500. }
  501. const bool no_downloads = downloads_hb->get_child_count() == 0;
  502. if (no_downloads == downloads_scroll->is_visible()) {
  503. downloads_scroll->set_visible(!no_downloads);
  504. }
  505. } break;
  506. case NOTIFICATION_THEME_CHANGED: {
  507. library_scroll_bg->add_style_override("panel", get_stylebox("bg", "Tree"));
  508. downloads_scroll->add_style_override("bg", get_stylebox("bg", "Tree"));
  509. error_tr->set_texture(get_icon("Error", "EditorIcons"));
  510. filter->set_right_icon(get_icon("Search", "EditorIcons"));
  511. filter->set_clear_button_enabled(true);
  512. } break;
  513. }
  514. }
  515. void EditorAssetLibrary::_install_asset() {
  516. ERR_FAIL_COND(!description);
  517. for (int i = 0; i < downloads_hb->get_child_count(); i++) {
  518. EditorAssetLibraryItemDownload *d = Object::cast_to<EditorAssetLibraryItemDownload>(downloads_hb->get_child(i));
  519. if (d && d->get_asset_id() == description->get_asset_id()) {
  520. if (EditorNode::get_singleton() != NULL)
  521. EditorNode::get_singleton()->show_warning(TTR("Download for this asset is already in progress!"));
  522. return;
  523. }
  524. }
  525. EditorAssetLibraryItemDownload *download = memnew(EditorAssetLibraryItemDownload);
  526. downloads_hb->add_child(download);
  527. download->configure(description->get_title(), description->get_asset_id(), description->get_preview_icon(), description->get_download_url(), description->get_sha256());
  528. if (templates_only) {
  529. download->set_external_install(true);
  530. download->connect("install_asset", this, "_install_external_asset");
  531. }
  532. }
  533. const char *EditorAssetLibrary::sort_key[SORT_MAX] = {
  534. "updated",
  535. "updated",
  536. "name",
  537. "name",
  538. "cost",
  539. "cost",
  540. };
  541. const char *EditorAssetLibrary::sort_text[SORT_MAX] = {
  542. TTRC("Recently Updated"),
  543. TTRC("Least Recently Updated"),
  544. TTRC("Name (A-Z)"),
  545. TTRC("Name (Z-A)"),
  546. TTRC("License (A-Z)"), // "cost" stores the SPDX license name in the Godot Asset Library.
  547. TTRC("License (Z-A)"), // "cost" stores the SPDX license name in the Godot Asset Library.
  548. };
  549. const char *EditorAssetLibrary::support_key[SUPPORT_MAX] = {
  550. "official",
  551. "community",
  552. "testing",
  553. };
  554. void EditorAssetLibrary::_select_author(int p_id) {
  555. // Open author window.
  556. }
  557. void EditorAssetLibrary::_select_category(int p_id) {
  558. for (int i = 0; i < categories->get_item_count(); i++) {
  559. if (i == 0)
  560. continue;
  561. int id = categories->get_item_metadata(i);
  562. if (id == p_id) {
  563. categories->select(i);
  564. _search();
  565. break;
  566. }
  567. }
  568. }
  569. void EditorAssetLibrary::_select_asset(int p_id) {
  570. _api_request("asset/" + itos(p_id), REQUESTING_ASSET);
  571. }
  572. void EditorAssetLibrary::_image_update(bool use_cache, bool final, const PoolByteArray &p_data, int p_queue_id) {
  573. Object *obj = ObjectDB::get_instance(image_queue[p_queue_id].target);
  574. if (obj) {
  575. bool image_set = false;
  576. PoolByteArray image_data = p_data;
  577. if (use_cache) {
  578. String cache_filename_base = EditorSettings::get_singleton()->get_cache_dir().plus_file("assetimage_" + image_queue[p_queue_id].image_url.md5_text());
  579. FileAccess *file = FileAccess::open(cache_filename_base + ".data", FileAccess::READ);
  580. if (file) {
  581. PoolByteArray cached_data;
  582. int len = file->get_32();
  583. cached_data.resize(len);
  584. PoolByteArray::Write w = cached_data.write();
  585. file->get_buffer(w.ptr(), len);
  586. image_data = cached_data;
  587. file->close();
  588. memdelete(file);
  589. }
  590. }
  591. int len = image_data.size();
  592. PoolByteArray::Read r = image_data.read();
  593. Ref<Image> image = Ref<Image>(memnew(Image));
  594. uint8_t png_signature[8] = { 137, 80, 78, 71, 13, 10, 26, 10 };
  595. uint8_t jpg_signature[3] = { 255, 216, 255 };
  596. if (r.ptr()) {
  597. if ((memcmp(&r[0], &png_signature[0], 8) == 0) && Image::_png_mem_loader_func) {
  598. image->copy_internals_from(Image::_png_mem_loader_func(r.ptr(), len));
  599. } else if ((memcmp(&r[0], &jpg_signature[0], 3) == 0) && Image::_jpg_mem_loader_func) {
  600. image->copy_internals_from(Image::_jpg_mem_loader_func(r.ptr(), len));
  601. }
  602. }
  603. if (!image->empty()) {
  604. switch (image_queue[p_queue_id].image_type) {
  605. case IMAGE_QUEUE_ICON:
  606. image->resize(64 * EDSCALE, 64 * EDSCALE, Image::INTERPOLATE_LANCZOS);
  607. break;
  608. case IMAGE_QUEUE_THUMBNAIL: {
  609. float max_height = 85 * EDSCALE;
  610. float scale_ratio = max_height / (image->get_height() * EDSCALE);
  611. if (scale_ratio < 1) {
  612. image->resize(image->get_width() * EDSCALE * scale_ratio, image->get_height() * EDSCALE * scale_ratio, Image::INTERPOLATE_LANCZOS);
  613. }
  614. } break;
  615. case IMAGE_QUEUE_SCREENSHOT: {
  616. float max_height = 397 * EDSCALE;
  617. float scale_ratio = max_height / (image->get_height() * EDSCALE);
  618. if (scale_ratio < 1) {
  619. image->resize(image->get_width() * EDSCALE * scale_ratio, image->get_height() * EDSCALE * scale_ratio, Image::INTERPOLATE_LANCZOS);
  620. }
  621. } break;
  622. }
  623. Ref<ImageTexture> tex;
  624. tex.instance();
  625. tex->create_from_image(image);
  626. obj->call("set_image", image_queue[p_queue_id].image_type, image_queue[p_queue_id].image_index, tex);
  627. image_set = true;
  628. }
  629. if (!image_set && final) {
  630. obj->call("set_image", image_queue[p_queue_id].image_type, image_queue[p_queue_id].image_index, get_icon("FileBrokenBigThumb", "EditorIcons"));
  631. }
  632. }
  633. }
  634. void EditorAssetLibrary::_image_request_completed(int p_status, int p_code, const PoolStringArray &headers, const PoolByteArray &p_data, int p_queue_id) {
  635. ERR_FAIL_COND(!image_queue.has(p_queue_id));
  636. if (p_status == HTTPRequest::RESULT_SUCCESS && p_code < HTTPClient::RESPONSE_BAD_REQUEST) {
  637. if (p_code != HTTPClient::RESPONSE_NOT_MODIFIED) {
  638. for (int i = 0; i < headers.size(); i++) {
  639. if (headers[i].findn("ETag:") == 0) { // Save etag
  640. String cache_filename_base = EditorSettings::get_singleton()->get_cache_dir().plus_file("assetimage_" + image_queue[p_queue_id].image_url.md5_text());
  641. String new_etag = headers[i].substr(headers[i].find(":") + 1, headers[i].length()).strip_edges();
  642. FileAccess *file;
  643. file = FileAccess::open(cache_filename_base + ".etag", FileAccess::WRITE);
  644. if (file) {
  645. file->store_line(new_etag);
  646. file->close();
  647. memdelete(file);
  648. }
  649. int len = p_data.size();
  650. PoolByteArray::Read r = p_data.read();
  651. file = FileAccess::open(cache_filename_base + ".data", FileAccess::WRITE);
  652. if (file) {
  653. file->store_32(len);
  654. file->store_buffer(r.ptr(), len);
  655. file->close();
  656. memdelete(file);
  657. }
  658. break;
  659. }
  660. }
  661. }
  662. _image_update(p_code == HTTPClient::RESPONSE_NOT_MODIFIED, true, p_data, p_queue_id);
  663. } else {
  664. WARN_PRINTS("Error getting image file from URL: " + image_queue[p_queue_id].image_url);
  665. Object *obj = ObjectDB::get_instance(image_queue[p_queue_id].target);
  666. if (obj) {
  667. obj->call("set_image", image_queue[p_queue_id].image_type, image_queue[p_queue_id].image_index, get_icon("FileBrokenBigThumb", "EditorIcons"));
  668. }
  669. }
  670. image_queue[p_queue_id].request->queue_delete();
  671. image_queue.erase(p_queue_id);
  672. _update_image_queue();
  673. }
  674. void EditorAssetLibrary::_update_image_queue() {
  675. const int max_images = 6;
  676. int current_images = 0;
  677. List<int> to_delete;
  678. for (Map<int, ImageQueue>::Element *E = image_queue.front(); E; E = E->next()) {
  679. if (!E->get().active && current_images < max_images) {
  680. String cache_filename_base = EditorSettings::get_singleton()->get_cache_dir().plus_file("assetimage_" + E->get().image_url.md5_text());
  681. Vector<String> headers;
  682. if (FileAccess::exists(cache_filename_base + ".etag") && FileAccess::exists(cache_filename_base + ".data")) {
  683. FileAccess *file = FileAccess::open(cache_filename_base + ".etag", FileAccess::READ);
  684. if (file) {
  685. headers.push_back("If-None-Match: " + file->get_line());
  686. file->close();
  687. memdelete(file);
  688. }
  689. }
  690. Error err = E->get().request->request(E->get().image_url, headers);
  691. if (err != OK) {
  692. to_delete.push_back(E->key());
  693. } else {
  694. E->get().active = true;
  695. }
  696. current_images++;
  697. } else if (E->get().active) {
  698. current_images++;
  699. }
  700. }
  701. while (to_delete.size()) {
  702. image_queue[to_delete.front()->get()].request->queue_delete();
  703. image_queue.erase(to_delete.front()->get());
  704. to_delete.pop_front();
  705. }
  706. }
  707. void EditorAssetLibrary::_request_image(ObjectID p_for, String p_image_url, ImageType p_type, int p_image_index) {
  708. ImageQueue iq;
  709. iq.image_url = p_image_url;
  710. iq.image_index = p_image_index;
  711. iq.image_type = p_type;
  712. iq.request = memnew(HTTPRequest);
  713. iq.request->set_use_threads(EDITOR_DEF("asset_library/use_threads", true));
  714. iq.target = p_for;
  715. iq.queue_id = ++last_queue_id;
  716. iq.active = false;
  717. iq.request->connect("request_completed", this, "_image_request_completed", varray(iq.queue_id));
  718. image_queue[iq.queue_id] = iq;
  719. add_child(iq.request);
  720. _image_update(true, false, PoolByteArray(), iq.queue_id);
  721. _update_image_queue();
  722. }
  723. void EditorAssetLibrary::_repository_changed(int p_repository_id) {
  724. host = repository->get_item_metadata(p_repository_id);
  725. if (templates_only) {
  726. _api_request("configure", REQUESTING_CONFIG, "?type=project");
  727. } else {
  728. _api_request("configure", REQUESTING_CONFIG);
  729. }
  730. }
  731. void EditorAssetLibrary::_support_toggled(int p_support) {
  732. support->get_popup()->set_item_checked(p_support, !support->get_popup()->is_item_checked(p_support));
  733. _search();
  734. }
  735. void EditorAssetLibrary::_rerun_search(int p_ignore) {
  736. _search();
  737. }
  738. void EditorAssetLibrary::_search(int p_page) {
  739. String args;
  740. if (templates_only) {
  741. args += "?type=project&";
  742. } else {
  743. args += "?";
  744. }
  745. args += String() + "sort=" + sort_key[sort->get_selected()];
  746. // We use the "branch" version, i.e. major.minor, as patch releases should be compatible
  747. args += "&godot_version=" + String(VERSION_BRANCH);
  748. String support_list;
  749. for (int i = 0; i < SUPPORT_MAX; i++) {
  750. if (support->get_popup()->is_item_checked(i)) {
  751. support_list += String(support_key[i]) + "+";
  752. }
  753. }
  754. if (support_list != String()) {
  755. args += "&support=" + support_list.substr(0, support_list.length() - 1);
  756. }
  757. if (categories->get_selected() > 0) {
  758. args += "&category=" + itos(categories->get_item_metadata(categories->get_selected()));
  759. }
  760. // Sorting options with an odd index are always the reverse of the previous one
  761. if (sort->get_selected() % 2 == 1) {
  762. args += "&reverse=true";
  763. }
  764. if (filter->get_text() != String()) {
  765. args += "&filter=" + filter->get_text().http_escape();
  766. }
  767. if (p_page > 0) {
  768. args += "&page=" + itos(p_page);
  769. }
  770. _api_request("asset", REQUESTING_SEARCH, args);
  771. }
  772. void EditorAssetLibrary::_search_text_changed(const String &p_text) {
  773. filter_debounce_timer->start();
  774. }
  775. void EditorAssetLibrary::_filter_debounce_timer_timeout() {
  776. _search();
  777. }
  778. HBoxContainer *EditorAssetLibrary::_make_pages(int p_page, int p_page_count, int p_page_len, int p_total_items, int p_current_items) {
  779. HBoxContainer *hbc = memnew(HBoxContainer);
  780. if (p_page_count < 2)
  781. return hbc;
  782. //do the mario
  783. int from = p_page - 5;
  784. if (from < 0)
  785. from = 0;
  786. int to = from + 10;
  787. if (to > p_page_count)
  788. to = p_page_count;
  789. hbc->add_spacer();
  790. hbc->add_constant_override("separation", 5 * EDSCALE);
  791. Button *first = memnew(Button);
  792. first->set_text(TTR("First"));
  793. if (p_page != 0) {
  794. first->connect("pressed", this, "_search", varray(0));
  795. } else {
  796. first->set_disabled(true);
  797. first->set_focus_mode(Control::FOCUS_NONE);
  798. }
  799. hbc->add_child(first);
  800. Button *prev = memnew(Button);
  801. prev->set_text(TTR("Previous"));
  802. if (p_page > 0) {
  803. prev->connect("pressed", this, "_search", varray(p_page - 1));
  804. } else {
  805. prev->set_disabled(true);
  806. prev->set_focus_mode(Control::FOCUS_NONE);
  807. }
  808. hbc->add_child(prev);
  809. hbc->add_child(memnew(VSeparator));
  810. for (int i = from; i < to; i++) {
  811. if (i == p_page) {
  812. Button *current = memnew(Button);
  813. // Keep the extended padding for the currently active page (see below).
  814. current->set_text(vformat(" %d ", i + 1));
  815. current->set_disabled(true);
  816. current->set_focus_mode(Control::FOCUS_NONE);
  817. hbc->add_child(current);
  818. } else {
  819. Button *current = memnew(Button);
  820. // Add padding to make page number buttons easier to click.
  821. current->set_text(vformat(" %d ", i + 1));
  822. current->connect("pressed", this, "_search", varray(i));
  823. hbc->add_child(current);
  824. }
  825. }
  826. Button *next = memnew(Button);
  827. next->set_text(TTR("Next"));
  828. if (p_page < p_page_count - 1) {
  829. next->connect("pressed", this, "_search", varray(p_page + 1));
  830. } else {
  831. next->set_disabled(true);
  832. next->set_focus_mode(Control::FOCUS_NONE);
  833. }
  834. hbc->add_child(memnew(VSeparator));
  835. hbc->add_child(next);
  836. Button *last = memnew(Button);
  837. last->set_text(TTR("Last"));
  838. if (p_page != p_page_count - 1) {
  839. last->connect("pressed", this, "_search", varray(p_page_count - 1));
  840. } else {
  841. last->set_disabled(true);
  842. last->set_focus_mode(Control::FOCUS_NONE);
  843. }
  844. hbc->add_child(last);
  845. hbc->add_spacer();
  846. return hbc;
  847. }
  848. void EditorAssetLibrary::_api_request(const String &p_request, RequestType p_request_type, const String &p_arguments) {
  849. if (requesting != REQUESTING_NONE) {
  850. request->cancel_request();
  851. }
  852. requesting = p_request_type;
  853. error_hb->hide();
  854. request->request(host + "/" + p_request + p_arguments);
  855. }
  856. void EditorAssetLibrary::_http_request_completed(int p_status, int p_code, const PoolStringArray &headers, const PoolByteArray &p_data) {
  857. String str;
  858. {
  859. int datalen = p_data.size();
  860. PoolByteArray::Read r = p_data.read();
  861. str.parse_utf8((const char *)r.ptr(), datalen);
  862. }
  863. bool error_abort = true;
  864. switch (p_status) {
  865. case HTTPRequest::RESULT_CANT_RESOLVE: {
  866. error_label->set_text(TTR("Can't resolve hostname:") + " " + host);
  867. } break;
  868. case HTTPRequest::RESULT_BODY_SIZE_LIMIT_EXCEEDED:
  869. case HTTPRequest::RESULT_CONNECTION_ERROR:
  870. case HTTPRequest::RESULT_CHUNKED_BODY_SIZE_MISMATCH: {
  871. error_label->set_text(TTR("Connection error, please try again."));
  872. } break;
  873. case HTTPRequest::RESULT_SSL_HANDSHAKE_ERROR:
  874. case HTTPRequest::RESULT_CANT_CONNECT: {
  875. error_label->set_text(TTR("Can't connect to host:") + " " + host);
  876. } break;
  877. case HTTPRequest::RESULT_NO_RESPONSE: {
  878. error_label->set_text(TTR("No response from host:") + " " + host);
  879. } break;
  880. case HTTPRequest::RESULT_REQUEST_FAILED: {
  881. error_label->set_text(TTR("Request failed, return code:") + " " + itos(p_code));
  882. } break;
  883. case HTTPRequest::RESULT_REDIRECT_LIMIT_REACHED: {
  884. error_label->set_text(TTR("Request failed, too many redirects"));
  885. } break;
  886. default: {
  887. if (p_code != 200) {
  888. error_label->set_text(TTR("Request failed, return code:") + " " + itos(p_code));
  889. } else {
  890. error_abort = false;
  891. }
  892. } break;
  893. }
  894. if (error_abort) {
  895. error_hb->show();
  896. return;
  897. }
  898. Dictionary d;
  899. {
  900. Variant js;
  901. String errs;
  902. int errl;
  903. JSON::parse(str, js, errs, errl);
  904. d = js;
  905. }
  906. RequestType requested = requesting;
  907. requesting = REQUESTING_NONE;
  908. switch (requested) {
  909. case REQUESTING_CONFIG: {
  910. categories->clear();
  911. categories->add_item(TTR("All"));
  912. categories->set_item_metadata(0, 0);
  913. if (d.has("categories")) {
  914. Array clist = d["categories"];
  915. for (int i = 0; i < clist.size(); i++) {
  916. Dictionary cat = clist[i];
  917. if (!cat.has("name") || !cat.has("id"))
  918. continue;
  919. String name = cat["name"];
  920. int id = cat["id"];
  921. categories->add_item(name);
  922. categories->set_item_metadata(categories->get_item_count() - 1, id);
  923. category_map[cat["id"]] = name;
  924. }
  925. }
  926. _search();
  927. } break;
  928. case REQUESTING_SEARCH: {
  929. initial_loading = false;
  930. // The loading text only needs to be displayed before the first page is loaded.
  931. // Therefore, we don't need to show it again.
  932. library_loading->hide();
  933. library_error->hide();
  934. if (asset_items) {
  935. memdelete(asset_items);
  936. }
  937. if (asset_top_page) {
  938. memdelete(asset_top_page);
  939. }
  940. if (asset_bottom_page) {
  941. memdelete(asset_bottom_page);
  942. }
  943. int page = 0;
  944. int pages = 1;
  945. int page_len = 10;
  946. int total_items = 1;
  947. Array result;
  948. if (d.has("page")) {
  949. page = d["page"];
  950. }
  951. if (d.has("pages")) {
  952. pages = d["pages"];
  953. }
  954. if (d.has("page_length")) {
  955. page_len = d["page_length"];
  956. }
  957. if (d.has("total")) {
  958. total_items = d["total"];
  959. }
  960. if (d.has("result")) {
  961. result = d["result"];
  962. }
  963. asset_top_page = _make_pages(page, pages, page_len, total_items, result.size());
  964. library_vb->add_child(asset_top_page);
  965. asset_items = memnew(GridContainer);
  966. asset_items->set_columns(2);
  967. asset_items->add_constant_override("hseparation", 10 * EDSCALE);
  968. asset_items->add_constant_override("vseparation", 10 * EDSCALE);
  969. library_vb->add_child(asset_items);
  970. asset_bottom_page = _make_pages(page, pages, page_len, total_items, result.size());
  971. library_vb->add_child(asset_bottom_page);
  972. if (result.empty()) {
  973. library_error->set_text(vformat(TTR("No results for \"%s\"."), filter->get_text()));
  974. library_error->show();
  975. }
  976. for (int i = 0; i < result.size(); i++) {
  977. Dictionary r = result[i];
  978. ERR_CONTINUE(!r.has("title"));
  979. ERR_CONTINUE(!r.has("asset_id"));
  980. ERR_CONTINUE(!r.has("author"));
  981. ERR_CONTINUE(!r.has("author_id"));
  982. ERR_CONTINUE(!r.has("category_id"));
  983. ERR_FAIL_COND(!category_map.has(r["category_id"]));
  984. ERR_CONTINUE(!r.has("cost"));
  985. EditorAssetLibraryItem *item = memnew(EditorAssetLibraryItem);
  986. asset_items->add_child(item);
  987. item->configure(r["title"], r["asset_id"], category_map[r["category_id"]], r["category_id"], r["author"], r["author_id"], r["cost"]);
  988. item->connect("asset_selected", this, "_select_asset");
  989. item->connect("author_selected", this, "_select_author");
  990. item->connect("category_selected", this, "_select_category");
  991. if (r.has("icon_url") && r["icon_url"] != "") {
  992. _request_image(item->get_instance_id(), r["icon_url"], IMAGE_QUEUE_ICON, 0);
  993. }
  994. }
  995. if (!result.empty()) {
  996. library_scroll->set_v_scroll(0);
  997. }
  998. } break;
  999. case REQUESTING_ASSET: {
  1000. Dictionary r = d;
  1001. ERR_FAIL_COND(!r.has("title"));
  1002. ERR_FAIL_COND(!r.has("asset_id"));
  1003. ERR_FAIL_COND(!r.has("author"));
  1004. ERR_FAIL_COND(!r.has("author_id"));
  1005. ERR_FAIL_COND(!r.has("version"));
  1006. ERR_FAIL_COND(!r.has("version_string"));
  1007. ERR_FAIL_COND(!r.has("category_id"));
  1008. ERR_FAIL_COND(!category_map.has(r["category_id"]));
  1009. ERR_FAIL_COND(!r.has("cost"));
  1010. ERR_FAIL_COND(!r.has("description"));
  1011. ERR_FAIL_COND(!r.has("download_url"));
  1012. ERR_FAIL_COND(!r.has("download_hash"));
  1013. ERR_FAIL_COND(!r.has("browse_url"));
  1014. if (description) {
  1015. memdelete(description);
  1016. }
  1017. description = memnew(EditorAssetLibraryItemDescription);
  1018. add_child(description);
  1019. description->popup_centered_minsize();
  1020. description->connect("confirmed", this, "_install_asset");
  1021. description->configure(r["title"], r["asset_id"], category_map[r["category_id"]], r["category_id"], r["author"], r["author_id"], r["cost"], r["version"], r["version_string"], r["description"], r["download_url"], r["browse_url"], r["download_hash"]);
  1022. if (r.has("icon_url") && r["icon_url"] != "") {
  1023. _request_image(description->get_instance_id(), r["icon_url"], IMAGE_QUEUE_ICON, 0);
  1024. }
  1025. if (d.has("previews")) {
  1026. Array previews = d["previews"];
  1027. for (int i = 0; i < previews.size(); i++) {
  1028. Dictionary p = previews[i];
  1029. ERR_CONTINUE(!p.has("type"));
  1030. ERR_CONTINUE(!p.has("link"));
  1031. bool is_video = p.has("type") && String(p["type"]) == "video";
  1032. String video_url;
  1033. if (is_video && p.has("link")) {
  1034. video_url = p["link"];
  1035. }
  1036. description->add_preview(i, is_video, video_url);
  1037. if (p.has("thumbnail")) {
  1038. _request_image(description->get_instance_id(), p["thumbnail"], IMAGE_QUEUE_THUMBNAIL, i);
  1039. }
  1040. if (!is_video) {
  1041. _request_image(description->get_instance_id(), p["link"], IMAGE_QUEUE_SCREENSHOT, i);
  1042. }
  1043. }
  1044. }
  1045. } break;
  1046. default: break;
  1047. }
  1048. }
  1049. void EditorAssetLibrary::_asset_file_selected(const String &p_file) {
  1050. if (asset_installer) {
  1051. memdelete(asset_installer);
  1052. asset_installer = NULL;
  1053. }
  1054. asset_installer = memnew(EditorAssetInstaller);
  1055. add_child(asset_installer);
  1056. asset_installer->open(p_file);
  1057. }
  1058. void EditorAssetLibrary::_asset_open() {
  1059. asset_open->popup_centered_ratio();
  1060. }
  1061. void EditorAssetLibrary::_manage_plugins() {
  1062. ProjectSettingsEditor::get_singleton()->popup_project_settings();
  1063. ProjectSettingsEditor::get_singleton()->set_plugins_page();
  1064. }
  1065. void EditorAssetLibrary::_install_external_asset(String p_zip_path, String p_title) {
  1066. emit_signal("install_asset", p_zip_path, p_title);
  1067. }
  1068. void EditorAssetLibrary::disable_community_support() {
  1069. support->get_popup()->set_item_checked(SUPPORT_COMMUNITY, false);
  1070. }
  1071. void EditorAssetLibrary::_bind_methods() {
  1072. ClassDB::bind_method("_http_request_completed", &EditorAssetLibrary::_http_request_completed);
  1073. ClassDB::bind_method("_select_asset", &EditorAssetLibrary::_select_asset);
  1074. ClassDB::bind_method("_select_author", &EditorAssetLibrary::_select_author);
  1075. ClassDB::bind_method("_select_category", &EditorAssetLibrary::_select_category);
  1076. ClassDB::bind_method("_image_request_completed", &EditorAssetLibrary::_image_request_completed);
  1077. ClassDB::bind_method("_search", &EditorAssetLibrary::_search, DEFVAL(0));
  1078. ClassDB::bind_method("_search_text_changed", &EditorAssetLibrary::_search_text_changed);
  1079. ClassDB::bind_method("_filter_debounce_timer_timeout", &EditorAssetLibrary::_filter_debounce_timer_timeout);
  1080. ClassDB::bind_method("_install_asset", &EditorAssetLibrary::_install_asset);
  1081. ClassDB::bind_method("_manage_plugins", &EditorAssetLibrary::_manage_plugins);
  1082. ClassDB::bind_method("_asset_open", &EditorAssetLibrary::_asset_open);
  1083. ClassDB::bind_method("_asset_file_selected", &EditorAssetLibrary::_asset_file_selected);
  1084. ClassDB::bind_method("_repository_changed", &EditorAssetLibrary::_repository_changed);
  1085. ClassDB::bind_method("_support_toggled", &EditorAssetLibrary::_support_toggled);
  1086. ClassDB::bind_method("_rerun_search", &EditorAssetLibrary::_rerun_search);
  1087. ClassDB::bind_method("_install_external_asset", &EditorAssetLibrary::_install_external_asset);
  1088. ADD_SIGNAL(MethodInfo("install_asset", PropertyInfo(Variant::STRING, "zip_path"), PropertyInfo(Variant::STRING, "name")));
  1089. }
  1090. EditorAssetLibrary::EditorAssetLibrary(bool p_templates_only) {
  1091. requesting = REQUESTING_NONE;
  1092. templates_only = p_templates_only;
  1093. initial_loading = true;
  1094. VBoxContainer *library_main = memnew(VBoxContainer);
  1095. add_child(library_main);
  1096. HBoxContainer *search_hb = memnew(HBoxContainer);
  1097. library_main->add_child(search_hb);
  1098. library_main->add_constant_override("separation", 10 * EDSCALE);
  1099. filter = memnew(LineEdit);
  1100. search_hb->add_child(filter);
  1101. filter->set_h_size_flags(SIZE_EXPAND_FILL);
  1102. filter->connect("text_changed", this, "_search_text_changed");
  1103. // Perform a search automatically if the user hasn't entered any text for a certain duration.
  1104. // This way, the user doesn't need to press Enter to initiate their search.
  1105. filter_debounce_timer = memnew(Timer);
  1106. filter_debounce_timer->set_one_shot(true);
  1107. filter_debounce_timer->set_wait_time(0.25);
  1108. filter_debounce_timer->connect("timeout", this, "_filter_debounce_timer_timeout");
  1109. search_hb->add_child(filter_debounce_timer);
  1110. if (!p_templates_only)
  1111. search_hb->add_child(memnew(VSeparator));
  1112. Button *open_asset = memnew(Button);
  1113. open_asset->set_text(TTR("Import..."));
  1114. search_hb->add_child(open_asset);
  1115. open_asset->connect("pressed", this, "_asset_open");
  1116. Button *plugins = memnew(Button);
  1117. plugins->set_text(TTR("Plugins..."));
  1118. search_hb->add_child(plugins);
  1119. plugins->connect("pressed", this, "_manage_plugins");
  1120. if (p_templates_only) {
  1121. open_asset->hide();
  1122. plugins->hide();
  1123. }
  1124. HBoxContainer *search_hb2 = memnew(HBoxContainer);
  1125. library_main->add_child(search_hb2);
  1126. search_hb2->add_child(memnew(Label(TTR("Sort:") + " ")));
  1127. sort = memnew(OptionButton);
  1128. for (int i = 0; i < SORT_MAX; i++) {
  1129. sort->add_item(TTRGET(sort_text[i]));
  1130. }
  1131. search_hb2->add_child(sort);
  1132. sort->set_h_size_flags(SIZE_EXPAND_FILL);
  1133. sort->connect("item_selected", this, "_rerun_search");
  1134. search_hb2->add_child(memnew(VSeparator));
  1135. search_hb2->add_child(memnew(Label(TTR("Category:") + " ")));
  1136. categories = memnew(OptionButton);
  1137. categories->add_item(TTR("All"));
  1138. search_hb2->add_child(categories);
  1139. categories->set_h_size_flags(SIZE_EXPAND_FILL);
  1140. categories->connect("item_selected", this, "_rerun_search");
  1141. search_hb2->add_child(memnew(VSeparator));
  1142. search_hb2->add_child(memnew(Label(TTR("Site:") + " ")));
  1143. repository = memnew(OptionButton);
  1144. {
  1145. Dictionary default_urls;
  1146. default_urls["godotengine.org"] = "https://godotengine.org/asset-library/api";
  1147. default_urls["localhost"] = "http://127.0.0.1/asset-library/api";
  1148. Dictionary available_urls = _EDITOR_DEF("asset_library/available_urls", default_urls, true);
  1149. Array keys = available_urls.keys();
  1150. for (int i = 0; i < available_urls.size(); i++) {
  1151. String key = keys[i];
  1152. repository->add_item(key);
  1153. repository->set_item_metadata(i, available_urls[key]);
  1154. }
  1155. }
  1156. repository->connect("item_selected", this, "_repository_changed");
  1157. search_hb2->add_child(repository);
  1158. repository->set_h_size_flags(SIZE_EXPAND_FILL);
  1159. search_hb2->add_child(memnew(VSeparator));
  1160. support = memnew(MenuButton);
  1161. search_hb2->add_child(support);
  1162. support->set_text(TTR("Support"));
  1163. support->get_popup()->add_check_item(TTR("Official"), SUPPORT_OFFICIAL);
  1164. support->get_popup()->add_check_item(TTR("Community"), SUPPORT_COMMUNITY);
  1165. support->get_popup()->add_check_item(TTR("Testing"), SUPPORT_TESTING);
  1166. support->get_popup()->set_item_checked(SUPPORT_OFFICIAL, true);
  1167. support->get_popup()->set_item_checked(SUPPORT_COMMUNITY, true);
  1168. support->get_popup()->connect("id_pressed", this, "_support_toggled");
  1169. /////////
  1170. library_scroll_bg = memnew(PanelContainer);
  1171. library_main->add_child(library_scroll_bg);
  1172. library_scroll_bg->set_v_size_flags(SIZE_EXPAND_FILL);
  1173. library_scroll = memnew(ScrollContainer);
  1174. library_scroll->set_enable_v_scroll(true);
  1175. library_scroll->set_enable_h_scroll(false);
  1176. library_scroll_bg->add_child(library_scroll);
  1177. Ref<StyleBoxEmpty> border2;
  1178. border2.instance();
  1179. border2->set_default_margin(MARGIN_LEFT, 15 * EDSCALE);
  1180. border2->set_default_margin(MARGIN_RIGHT, 35 * EDSCALE);
  1181. border2->set_default_margin(MARGIN_BOTTOM, 15 * EDSCALE);
  1182. border2->set_default_margin(MARGIN_TOP, 15 * EDSCALE);
  1183. PanelContainer *library_vb_border = memnew(PanelContainer);
  1184. library_scroll->add_child(library_vb_border);
  1185. library_vb_border->add_style_override("panel", border2);
  1186. library_vb_border->set_h_size_flags(SIZE_EXPAND_FILL);
  1187. library_vb_border->set_mouse_filter(MOUSE_FILTER_PASS);
  1188. library_vb = memnew(VBoxContainer);
  1189. library_vb->set_h_size_flags(SIZE_EXPAND_FILL);
  1190. library_vb_border->add_child(library_vb);
  1191. library_loading = memnew(Label(TTR("Loading...")));
  1192. library_loading->set_align(Label::ALIGN_CENTER);
  1193. library_vb->add_child(library_loading);
  1194. library_error = memnew(Label);
  1195. library_error->set_align(Label::ALIGN_CENTER);
  1196. library_error->hide();
  1197. library_vb->add_child(library_error);
  1198. asset_top_page = memnew(HBoxContainer);
  1199. library_vb->add_child(asset_top_page);
  1200. asset_items = memnew(GridContainer);
  1201. asset_items->set_columns(2);
  1202. asset_items->add_constant_override("hseparation", 10 * EDSCALE);
  1203. asset_items->add_constant_override("vseparation", 10 * EDSCALE);
  1204. library_vb->add_child(asset_items);
  1205. asset_bottom_page = memnew(HBoxContainer);
  1206. library_vb->add_child(asset_bottom_page);
  1207. request = memnew(HTTPRequest);
  1208. add_child(request);
  1209. request->set_use_threads(EDITOR_DEF("asset_library/use_threads", true));
  1210. request->connect("request_completed", this, "_http_request_completed");
  1211. last_queue_id = 0;
  1212. library_vb->add_constant_override("separation", 20 * EDSCALE);
  1213. error_hb = memnew(HBoxContainer);
  1214. library_main->add_child(error_hb);
  1215. error_label = memnew(Label);
  1216. error_label->add_color_override("color", get_color("error_color", "Editor"));
  1217. error_hb->add_child(error_label);
  1218. error_tr = memnew(TextureRect);
  1219. error_tr->set_v_size_flags(Control::SIZE_SHRINK_CENTER);
  1220. error_hb->add_child(error_tr);
  1221. description = NULL;
  1222. set_process(true);
  1223. downloads_scroll = memnew(ScrollContainer);
  1224. downloads_scroll->set_enable_h_scroll(true);
  1225. downloads_scroll->set_enable_v_scroll(false);
  1226. library_main->add_child(downloads_scroll);
  1227. downloads_hb = memnew(HBoxContainer);
  1228. downloads_scroll->add_child(downloads_hb);
  1229. asset_open = memnew(EditorFileDialog);
  1230. asset_open->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  1231. asset_open->add_filter("*.zip ; " + TTR("Assets ZIP File"));
  1232. asset_open->set_mode(EditorFileDialog::MODE_OPEN_FILE);
  1233. add_child(asset_open);
  1234. asset_open->connect("file_selected", this, "_asset_file_selected");
  1235. asset_installer = NULL;
  1236. }
  1237. ///////
  1238. void AssetLibraryEditorPlugin::make_visible(bool p_visible) {
  1239. if (p_visible) {
  1240. addon_library->show();
  1241. } else {
  1242. addon_library->hide();
  1243. }
  1244. }
  1245. AssetLibraryEditorPlugin::AssetLibraryEditorPlugin(EditorNode *p_node) {
  1246. editor = p_node;
  1247. addon_library = memnew(EditorAssetLibrary);
  1248. addon_library->set_v_size_flags(Control::SIZE_EXPAND_FILL);
  1249. editor->get_viewport()->add_child(addon_library);
  1250. addon_library->set_anchors_and_margins_preset(Control::PRESET_WIDE);
  1251. addon_library->hide();
  1252. }
  1253. AssetLibraryEditorPlugin::~AssetLibraryEditorPlugin() {
  1254. }