asset_library_editor_plugin.cpp 47 KB

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