GLOBAL_DATUM(character_directory, /datum/character_directory) /client/verb/show_character_directory() set name = "Character Directory" set category = "OOC" set desc = "Shows a listing of all active characters, along with their associated OOC notes, flavor text, and more." // This is primarily to stop malicious users from trying to lag the server by spamming this verb if(!usr.checkMoveCooldown()) to_chat(usr, "Don't spam character directory refresh.") return usr.setMoveCooldown(10) if(!GLOB.character_directory) GLOB.character_directory = new GLOB.character_directory.tgui_interact(mob) // This is a global singleton. Keep in mind that all operations should occur on usr, not src. /datum/character_directory /datum/character_directory/tgui_state(mob/user) return GLOB.tgui_always_state /datum/character_directory/tgui_interact(mob/user, datum/tgui/ui, datum/tgui/parent_ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) ui = new(user, src, "CharacterDirectory", "Character Directory") ui.open() /datum/character_directory/tgui_data(mob/user, datum/tgui/ui, datum/tgui_state/state) var/list/data = ..() if (user?.mind) data["personalVisibility"] = user.mind.show_in_directory data["personalTag"] = user.mind.directory_tag || "Unset" data["personalErpTag"] = user.mind.directory_erptag || "Unset" else if (user?.client?.prefs) data["personalVisibility"] = user.client.prefs.show_in_directory data["personalTag"] = user.client.prefs.directory_tag || "Unset" data["personalErpTag"] = user.client.prefs.directory_erptag || "Unset" return data /datum/character_directory/tgui_static_data(mob/user, datum/tgui/ui, datum/tgui_state/state) var/list/data = ..() var/list/directory_mobs = list() for(var/client/C in GLOB.clients) // Allow opt-out. if(C?.mob?.mind ? !C.mob.mind.show_in_directory : !C?.prefs?.show_in_directory) continue // These are the three vars we're trying to find // The approach differs based on the mob the client is controlling var/name = null var/species = null var/ooc_notes = null var/flavor_text = null var/tag var/erptag var/character_ad if (C.mob?.mind) //could use ternary for all three but this is more efficient tag = C.mob.mind.directory_tag || "Unset" erptag = C.mob.mind.directory_erptag || "Unset" character_ad = C.mob.mind.directory_ad else tag = C.prefs.directory_tag || "Unset" erptag = C.prefs.directory_erptag || "Unset" character_ad = C.prefs.directory_ad if(ishuman(C.mob)) var/mob/living/carbon/human/H = C.mob if(data_core && data_core.general) if(!find_general_record("name", H.real_name)) if(!find_record("name", H.real_name, data_core.hidden_general)) continue name = H.real_name species = "[H.custom_species ? H.custom_species : H.species.name]" ooc_notes = H.ooc_notes if(H.ooc_notes_likes) ooc_notes += "\n\nLIKES\n\n[H.ooc_notes_likes]" if(H.ooc_notes_dislikes) ooc_notes += "\n\nDISLIKES\n\n[H.ooc_notes_dislikes]" flavor_text = H.flavor_texts["general"] if(isAI(C.mob)) var/mob/living/silicon/ai/A = C.mob name = A.name species = "Artificial Intelligence" ooc_notes = A.ooc_notes if(A.ooc_notes_likes) ooc_notes += "\n\nLIKES\n\n[A.ooc_notes_likes]" if(A.ooc_notes_dislikes) ooc_notes += "\n\nDISLIKES\n\n[A.ooc_notes_dislikes]" flavor_text = null // No flavor text for AIs :c if(isrobot(C.mob)) var/mob/living/silicon/robot/R = C.mob if(R.scrambledcodes || (R.module && R.module.hide_on_manifest)) continue name = R.name species = "[R.modtype] [R.braintype]" ooc_notes = R.ooc_notes if(R.ooc_notes_likes) ooc_notes += "\n\nLIKES\n\n[R.ooc_notes_likes]" if(R.ooc_notes_dislikes) ooc_notes += "\n\nDISLIKES\n\n[R.ooc_notes_dislikes]" flavor_text = R.flavor_text // It's okay if we fail to find OOC notes and flavor text // But if we can't find the name, they must be using a non-compatible mob type currently. if(!name) continue directory_mobs.Add(list(list( "name" = name, "species" = species, "ooc_notes" = ooc_notes, "tag" = tag, "erptag" = erptag, "character_ad" = character_ad, "flavor_text" = flavor_text, ))) data["directory"] = directory_mobs return data /datum/character_directory/tgui_act(action, list/params, datum/tgui/ui, datum/tgui_state/state) . = ..() if(.) return if(action == "refresh") // This is primarily to stop malicious users from trying to lag the server by spamming this verb if(!usr.checkMoveCooldown()) to_chat(usr, "Don't spam character directory refresh.") return usr.setMoveCooldown(10) update_tgui_static_data(usr, ui) return TRUE else return check_for_mind_or_prefs(usr, action, params["overwrite_prefs"]) /datum/character_directory/proc/check_for_mind_or_prefs(mob/user, action, overwrite_prefs) if (!user.client) return var/can_set_prefs = overwrite_prefs && !!user.client.prefs var/can_set_mind = !!user.mind if (!can_set_prefs && !can_set_mind) if (!overwrite_prefs && !!user.client.prefs) to_chat(user, "You cannot change these settings if you don't have a mind to save them to. Enable overwriting prefs and switch to a slot you're fine with overwriting.") return switch(action) if ("setTag") var/list/new_tag = tgui_input_list(usr, "Pick a new Vore tag for the character directory", "Character Tag", GLOB.char_directory_tags) if(!new_tag) return return set_for_mind_or_prefs(user, action, new_tag, can_set_prefs, can_set_mind) if ("setErpTag") var/list/new_erptag = tgui_input_list(usr, "Pick a new ERP tag for the character directory", "Character ERP Tag", GLOB.char_directory_erptags) if(!new_erptag) return return set_for_mind_or_prefs(user, action, new_erptag, can_set_prefs, can_set_mind) if ("setVisible") var/visible = TRUE if (can_set_mind) visible = user.mind.show_in_directory else if (can_set_prefs) visible = user.client.prefs.show_in_directory to_chat(usr, "You are now [!visible ? "shown" : "not shown"] in the directory.") return set_for_mind_or_prefs(user, action, !visible, can_set_prefs, can_set_mind) if ("editAd") var/current_ad = (can_set_mind ? usr.mind.directory_ad : null) || (can_set_prefs ? usr.client.prefs.directory_ad : null) var/new_ad = sanitize(tgui_input_text(usr, "Change your character ad", "Character Ad", current_ad, multiline = TRUE, prevent_enter = TRUE), extra = 0) if(isnull(new_ad)) return return set_for_mind_or_prefs(user, action, new_ad, can_set_prefs, can_set_mind) /datum/character_directory/proc/set_for_mind_or_prefs(mob/user, action, new_value, can_set_prefs, can_set_mind) can_set_prefs &&= !!user.client.prefs can_set_mind &&= !!user.mind if (!can_set_prefs && !can_set_mind) to_chat(user, "You seem to have lost either your mind, or your current preferences, while changing the values.[action == "editAd" ? " Here is your ad that you wrote. [new_value]" : null]") return switch(action) if ("setTag") if (can_set_prefs) user.client.prefs.directory_tag = new_value if (can_set_mind) user.mind.directory_tag = new_value return TRUE if ("setErpTag") if (can_set_prefs) user.client.prefs.directory_erptag = new_value if (can_set_mind) user.mind.directory_erptag = new_value return TRUE if ("setVisible") if (can_set_prefs) user.client.prefs.show_in_directory = new_value if (can_set_mind) user.mind.show_in_directory = new_value return TRUE if ("editAd") if (can_set_prefs) user.client.prefs.directory_ad = new_value if (can_set_mind) user.mind.directory_ad = new_value return TRUE