diff --git a/code/_helpers/_global_objects.dm b/code/_helpers/_global_objects.dm index a5674d11482e9..6ed5f77f77263 100644 --- a/code/_helpers/_global_objects.dm +++ b/code/_helpers/_global_objects.dm @@ -7,13 +7,13 @@ var/global/datum/gear_tweak/color/gear_tweak_free_color_choice_ //#define gear_tweak_free_color_choice (gear_tweak_free_color_choice_ ? gear_tweak_free_color_choice_ : (gear_tweak_free_color_choice_ = new())) // Might work in 511 assuming x=y=5 gets implemented. -var/global/datum/gear_tweak/custom_name/gear_tweak_free_name_ +var/global/datum/gear_tweak/custom_var/name/gear_tweak_free_name_ /proc/gear_tweak_free_name() if(!gear_tweak_free_name_) gear_tweak_free_name_ = new() return gear_tweak_free_name_ -var/global/datum/gear_tweak/custom_desc/gear_tweak_free_desc_ +var/global/datum/gear_tweak/custom_var/desc/gear_tweak_free_desc_ /proc/gear_tweak_free_desc() if(!gear_tweak_free_desc_) gear_tweak_free_desc_ = new() diff --git a/code/modules/client/preference_setup/loadout/_defines.dm b/code/modules/client/preference_setup/loadout/_defines.dm index ced763ae24c26..3c070e14e1949 100644 --- a/code/modules/client/preference_setup/loadout/_defines.dm +++ b/code/modules/client/preference_setup/loadout/_defines.dm @@ -2,3 +2,6 @@ #define GEAR_HAS_TYPE_SELECTION FLAG(1) #define GEAR_HAS_SUBTYPE_SELECTION FLAG(2) #define GEAR_HAS_NO_CUSTOMIZATION FLAG(3) +/// This flag is discouraged for loadout items with random contents. +/// Extended descriptions are cached and even if they weren't, seeing random descriptions every refresh of the loadout would be odd as well. +#define GEAR_HAS_EXTENDED_DESCRIPTION FLAG(4) diff --git a/code/modules/client/preference_setup/loadout/gear_tweaks.dm b/code/modules/client/preference_setup/loadout/gear_tweaks.dm index 0962d36758e78..5a76536139951 100644 --- a/code/modules/client/preference_setup/loadout/gear_tweaks.dm +++ b/code/modules/client/preference_setup/loadout/gear_tweaks.dm @@ -13,7 +13,7 @@ /datum/gear_tweak/proc/tweak_item(user, obj/item/I, metadata) return -/datum/gear_tweak/proc/tweak_description(description, metadata) +/datum/gear_tweak/proc/tweak_description(description, metadata, extend_description) return description /* @@ -49,6 +49,8 @@ /datum/gear_tweak/path var/list/valid_paths + /// Stores extended descriptions by instance type (as opposed to metadata string) + var/static/list/extended_description_cache /datum/gear_tweak/path/New(list/valid_paths) if(!length(valid_paths)) @@ -97,11 +99,39 @@ return gear_data.path = valid_paths[metadata] -/datum/gear_tweak/path/tweak_description(description, metadata) +/datum/gear_tweak/path/tweak_description(description, metadata, extend_description) + metadata ||= get_default() if(!(metadata in valid_paths)) return ..() var/obj/O = valid_paths[metadata] - return initial(O.desc) || description + . = initial(O.desc) || description + if (extend_description) + extended_description_cache ||= new() + var/extra_desc = extended_description_cache[O] + if (isnull(extra_desc)) + var/atom/instance = new O(null) + // Defaults to a non-null value to avoid initializing a given type more than once, + // thanks to the if-check above doing an isnull-check rather than falsy one + extended_description_cache[O] = extra_desc = (instance.GetExtendedLoadoutDescription() || "") + qdel(instance) + if(extra_desc) + . += "
[extra_desc]" + +/atom/proc/GetExtendedLoadoutDescription() + return + +/obj/item/storage/GetExtendedLoadoutDescription() + var/list/description_counts = new() + for(var/atom/A in src) + description_counts[strip_improper(A.name)+"
"+A.desc]++ + + if (!length(description_counts)) + return + + var/list/item_descriptions = new("Contains:
") + for (var/description_count in description_counts) + item_descriptions.Add("[description_counts[description_count]]×[description_count]") + return FONT_SMALL(jointext(item_descriptions,"
")) /* * Content adjustment @@ -204,53 +234,97 @@ call(item, custom_setup_proc)(user) /* -* Custom Name +* Custom [Var] */ - -/datum/gear_tweak/custom_name - var/list/valid_custom_names - -/datum/gear_tweak/custom_name/New(list/valid_custom_names) - src.valid_custom_names = valid_custom_names +/datum/gear_tweak/custom_var + var/var_to_tweak + /// The user input method to use if `valid_list_options` does not contain any items. + var/input_method = /datum/gear_tweak/custom_var/proc/input_text + var/content_text + var/input_title = CHARACTER_PREFERENCE_INPUT_TITLE + var/input_message + /// Used to sanitize when using the input_message and input_text methods. + var/max_input_length = MAX_MESSAGE_LEN + /// Used to sanitize when using the input_num method. Setting this var does not mandate setting max_input_value. + var/min_input_value + /// Used to sanitize when using the input_num method. Setting this var does not mandate setting min_input_value. + var/max_input_value + /// If this list contains items the user is limited to these choices. + var/list/valid_list_options + +/datum/gear_tweak/custom_var/New(list/valid_list_options) + src.valid_list_options = valid_list_options ..() -/datum/gear_tweak/custom_name/get_contents(metadata) - return "Name: [metadata]" - -/datum/gear_tweak/custom_name/get_metadata(user, metadata, title) - if(valid_custom_names) - return input(user, "Choose an item name.", "Character Preference", metadata) as null|anything in valid_custom_names - return sanitize(input(user, "Choose the item's name. Leave it blank to use the default name.", "Item Name", metadata) as text|null, MAX_LNAME_LEN, extra = FALSE) +/datum/gear_tweak/custom_var/get_metadata(user, metadata, title) + var/final_title = title || input_title || CHARACTER_PREFERENCE_INPUT_TITLE + var/default = html_decode(metadata) + if(length(valid_list_options)) + return input(user, input_message + " Click cancel to use the default.", final_title, default) as null|anything in valid_list_options + return call(src, input_method)(user, input_message + " Leave blank to use the default.", final_title, default) -/datum/gear_tweak/custom_name/tweak_item(user, obj/item/I, metadata) +/datum/gear_tweak/custom_var/tweak_item(user, obj/item/I, metadata) if(!metadata) - return I.name - return I.name = metadata + return + if (length(valid_list_options) && !(metadata in valid_list_options)) + return + metadata = tweak_metadata(metadata) + I.vars[var_to_tweak] = metadata -/* -Custom Description -*/ +/datum/gear_tweak/custom_var/proc/tweak_metadata(metadata) + return metadata -/datum/gear_tweak/custom_desc - var/list/valid_custom_desc +/datum/gear_tweak/custom_var/get_contents(metadata) + return "[content_text]: [metadata]" -/datum/gear_tweak/custom_desc/New(list/valid_custom_desc) - src.valid_custom_desc = valid_custom_desc - ..() +/datum/gear_tweak/custom_var/proc/input_num(mob/user, message, title, default) + var/num = input(user, message, title, default) as null|num + if (isnum(min_input_value)) + num = max(min_input_value, num) + if (isnum(max_input_value)) + num = min(max_input_value, num) + return num -/datum/gear_tweak/custom_desc/get_contents(metadata) - return "Description: [metadata]" +// Note, didn't make these available for general use mainly due to the number of arguments needed for both input and sanitize +// Nothing stops you from generalizing these if you really wanted to +/datum/gear_tweak/custom_var/proc/input_text(mob/user, message, title, default, max_length) + return sanitize(input(user, message, title, default) as null|text, max_input_length || MAX_MESSAGE_LEN, extra = FALSE) -/datum/gear_tweak/custom_desc/get_metadata(user, metadata, title) - if(valid_custom_desc) - return input(user, "Choose an item description.", "Character Preference", metadata) as null|anything in valid_custom_desc - return sanitize(input(user, "Choose the item's description. Leave it blank to use the default description.", "Item Description", metadata) as message|null, MAX_DESC_LEN, extra = FALSE) +/datum/gear_tweak/custom_var/proc/input_message(mob/user, message, title, default, max_length) + return sanitize(input(user, message, title, default) as null|message, max_input_length || MAX_MESSAGE_LEN, extra = FALSE) -/datum/gear_tweak/custom_desc/tweak_item(user, obj/item/I, metadata) - if(!metadata) - return I.desc - return I.desc = metadata +/datum/gear_tweak/custom_var/proc/input_color(mob/user, message, title, default, max_length) + return input(user, message, title, default) as null|color +/* +* Custom Name +*/ +/datum/gear_tweak/custom_var/name + var_to_tweak = "name" + content_text = "Name" + input_title = "Choose Item Name" + input_message = "Choose the item's name." + max_input_length = MAX_LNAME_LEN + +// We enhance player input by prefixing with \improper unless they've for some reason manually added a/an/the +// An optional enhancement is to trim away a/an/the but then you have to make sure there's non-whitespace text after that +/datum/gear_tweak/custom_var/name/tweak_metadata(metadata) + if (length(metadata)) + var/lower = lowertext(metadata) + if (!text_starts_with(lower, "a ") && !text_starts_with(lower, "an ") && !text_starts_with(lower, "the ")) + return "\improper[metadata]" + return ..() + +/* +Custom Description +*/ +/datum/gear_tweak/custom_var/desc + var_to_tweak = "desc" + input_method = /datum/gear_tweak/custom_var/proc/input_message + content_text = "Description" + input_title = "Choose Item Description" + input_message = "Choose the item's description." + max_input_length = MAX_DESC_LEN /* * Tablet Stuff diff --git a/code/modules/client/preference_setup/loadout/lists/accessories.dm b/code/modules/client/preference_setup/loadout/lists/accessories.dm index e7eedc58dd36c..b31280a8e4871 100644 --- a/code/modules/client/preference_setup/loadout/lists/accessories.dm +++ b/code/modules/client/preference_setup/loadout/lists/accessories.dm @@ -65,7 +65,7 @@ description = "A medal or ribbon awarded to corporate personnel for significant accomplishments." path = /obj/item/storage/medalbox cost = 6 - flags = GEAR_HAS_NO_CUSTOMIZATION + flags = GEAR_HAS_NO_CUSTOMIZATION | GEAR_HAS_EXTENDED_DESCRIPTION /datum/gear/accessory/ntaward/New() diff --git a/code/modules/client/preference_setup/loadout/loadout.dm b/code/modules/client/preference_setup/loadout/loadout.dm index fa548d76584fe..54b0a1052749e 100644 --- a/code/modules/client/preference_setup/loadout/loadout.dm +++ b/code/modules/client/preference_setup/loadout/loadout.dm @@ -191,7 +191,7 @@ var/global/list/gear_datums = list() entry += "[G.display_name]" //inf, was: entry += "[G.display_name]" // [/SIERRA-EDIT] entry += "[G.cost]" - entry += "[FONT_NORMAL(G.get_description(get_gear_metadata(G,1)))]" + entry += "[FONT_NORMAL(G.get_description(get_gear_metadata(G,1), ticked))]" var/allowed = 1 if(allowed && G.allowed_roles) var/good_job = 0 @@ -387,10 +387,10 @@ var/global/list/gear_datums = list() if(custom_setup_proc) gear_tweaks += new/datum/gear_tweak/custom_setup(custom_setup_proc) -/datum/gear/proc/get_description(metadata) +/datum/gear/proc/get_description(metadata, include_extended_description) . = description for(var/datum/gear_tweak/gt in gear_tweaks) - . = gt.tweak_description(., metadata["[gt]"]) + . = gt.tweak_description(., metadata["[gt]"], include_extended_description && (flags & GEAR_HAS_EXTENDED_DESCRIPTION)) /datum/gear_data var/path diff --git a/maps/torch/loadout/loadout_accessories.dm b/maps/torch/loadout/loadout_accessories.dm index 20d4360f53728..787e72c9762bb 100644 --- a/maps/torch/loadout/loadout_accessories.dm +++ b/maps/torch/loadout/loadout_accessories.dm @@ -4,7 +4,7 @@ path = /obj/item/storage/medalbox/sol cost = 6 allowed_branches = SOLGOV_BRANCHES - flags = GEAR_HAS_NO_CUSTOMIZATION + flags = GEAR_HAS_NO_CUSTOMIZATION | GEAR_HAS_EXTENDED_DESCRIPTION /datum/gear/accessory/solgov_award_military/New() ..() @@ -24,7 +24,7 @@ description = "A selection of civilian awards awarded by the Sol Central Government." path = /obj/item/storage/medalbox/sol cost = 3 - flags = GEAR_HAS_NO_CUSTOMIZATION + flags = GEAR_HAS_NO_CUSTOMIZATION | GEAR_HAS_EXTENDED_DESCRIPTION /datum/gear/accessory/solgov_award_civilian/New() ..()