[MIRROR] Improved the Art Gallery App and the AI Portrait Picker. Added a search function to them. [MDB IGNORE] (#12177)

* Improved the Art Gallery App and the AI Portrait Picker. Added a search function to them. (#65481)

* Improved the Art Gallery App. Added a search function to it.

* Improved the Art Gallery App and the AI Portrait Picker. Added a search function to them.

Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-03-19 16:35:15 +01:00
committed by GitHub
parent 449b58bc80
commit 4a44e12191
7 changed files with 205 additions and 47 deletions

View File

@@ -2,6 +2,7 @@
///how much paper it takes from the printer to create a canvas.
#define CANVAS_PAPER_COST 10
/**
* ## portrait printer!
*
@@ -20,10 +21,21 @@
size = 9
tgui_id = "NtosPortraitPrinter"
program_icon = "paint-brush"
/**
* The last input in the search tab, stored here and reused in the UI to show successive users if
* the current list of paintings is limited to the results of a search or not.
*/
var/search_string
/// Whether the search function will check the title of the painting or the author's name.
var/search_mode = PAINTINGS_FILTER_SEARCH_TITLE
/// Stores the result of the search, for later access.
var/list/matching_paintings
/datum/computer_file/program/portrait_printer/ui_data(mob/user)
var/list/data = list()
data["paintings"] = SSpersistent_paintings.painting_ui_data()
data["paintings"] = matching_paintings || SSpersistent_paintings.painting_ui_data()
data["search_string"] = search_string
data["search_mode"] = search_mode == PAINTINGS_FILTER_SEARCH_TITLE ? "Title" : "Author"
return data
/datum/computer_file/program/portrait_printer/ui_assets(mob/user)
@@ -35,7 +47,26 @@
. = ..()
if(.)
return
switch(action)
if("search")
if(search_string != params["to_search"])
search_string = params["to_search"]
generate_matching_paintings_list()
. = TRUE
if("change_search_mode")
search_mode = search_mode == PAINTINGS_FILTER_SEARCH_TITLE ? PAINTINGS_FILTER_SEARCH_CREATOR : PAINTINGS_FILTER_SEARCH_TITLE
generate_matching_paintings_list()
. = TRUE
if("select")
print_painting(params["selected"])
/datum/computer_file/program/portrait_printer/proc/generate_matching_paintings_list()
matching_paintings = null
if(!search_string)
return
matching_paintings = SSpersistent_paintings.painting_ui_data(filter = search_mode, search_text = search_string)
/datum/computer_file/program/portrait_printer/proc/print_painting(selected_painting)
//printer check!
var/obj/item/computer_hardware/printer/printer
if(computer)
@@ -49,7 +80,7 @@
printer.stored_paper -= CANVAS_PAPER_COST
//canvas printing!
var/datum/painting/chosen_portrait = locate(params["selected"]) in SSpersistent_paintings.paintings
var/datum/painting/chosen_portrait = locate(selected_painting) in SSpersistent_paintings.paintings
var/png = "data/paintings/images/[chosen_portrait.md5].png"
var/icon/art_icon = new(png)
@@ -75,3 +106,5 @@
printed_canvas.update_icon()
to_chat(usr, span_notice("You have printed [chosen_portrait.title] onto a new canvas."))
playsound(computer.physical, 'sound/items/poster_being_created.ogg', 100, TRUE)
#undef CANVAS_PAPER_COST