mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-21 21:10:30 +01:00
3f62424312
This has zero reason to exist in our code base. We have no procs or variables tied to this. I removed it to make future modifications cleaner. --------- Signed-off-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com>
125 lines
3.9 KiB
Plaintext
125 lines
3.9 KiB
Plaintext
//CONTAINS: Evidence bags and fingerprint cards
|
|
|
|
/obj/item/evidencebag
|
|
name = "evidence bag"
|
|
desc = "An empty evidence bag."
|
|
icon = 'icons/obj/forensics.dmi'
|
|
icon_state = "evidenceobj"
|
|
item_state = ""
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
var/obj/item/stored_item = null
|
|
var/label_text = ""
|
|
|
|
/obj/item/evidencebag/mechanics_hints(mob/user, distance, is_adjacent)
|
|
. += ..()
|
|
. += "Click drag this onto an object to put it inside."
|
|
. += "Click it in-hand to remove an object from it."
|
|
|
|
/obj/item/evidencebag/Initialize()
|
|
. = ..()
|
|
AddComponent(/datum/component/base_name, name)
|
|
|
|
/obj/item/evidencebag/mouse_drop_dragged(atom/over, mob/user, src_location, over_location, params)
|
|
var/mob/living/carbon/human/human_user = user
|
|
var/obj/item/I = over
|
|
if(!istype(human_user) || !istype(I))
|
|
return
|
|
|
|
if (!(human_user.l_hand == src || human_user.r_hand == src))
|
|
return //bag must be in your hands to use
|
|
|
|
if (isturf(I.loc))
|
|
if (!human_user.Adjacent(I))
|
|
return
|
|
else
|
|
//If it isn't on the floor. Do some checks to see if it's in our hands or a box. Otherwise give up.
|
|
if(istype(I.loc,/obj/item/storage)) //in a container.
|
|
var/sdepth = I.storage_depth(human_user)
|
|
if (sdepth == -1 || sdepth > 1)
|
|
return //too deeply nested to access
|
|
|
|
var/obj/item/storage/U = I.loc
|
|
human_user.client.screen -= I
|
|
U.contents.Remove(I)
|
|
else if(human_user.l_hand == I) //in a hand
|
|
human_user.drop_l_hand()
|
|
else if(human_user.r_hand == I) //in a hand
|
|
human_user.drop_r_hand()
|
|
else
|
|
return
|
|
|
|
if(!istype(I) || I.anchored)
|
|
return
|
|
|
|
if(istype(I, /obj/item/evidencebag))
|
|
to_chat(human_user, SPAN_NOTICE("You find putting a plastic bag in another plastic bag to be slightly absurd and think better of it."))
|
|
return
|
|
|
|
if(I.w_class > 3)
|
|
to_chat(human_user, SPAN_NOTICE("[I] won't fit in [src]."))
|
|
return
|
|
|
|
if(contents.len)
|
|
to_chat(human_user, SPAN_NOTICE("[src] already has something inside it."))
|
|
return
|
|
|
|
human_user.visible_message("<b>[human_user]</b> puts \the [I] into \the [src].", SPAN_NOTICE("You put \the [I] inside \the [src]."),\
|
|
"You hear a rustle as someone puts something into a plastic bag.")
|
|
store_item(I)
|
|
|
|
/obj/item/evidencebag/proc/store_item(obj/item/I)
|
|
icon_state = "evidence"
|
|
var/mutable_appearance/MA = new(I)
|
|
MA.pixel_x = 0
|
|
MA.pixel_y = 0
|
|
MA.layer = FLOAT_LAYER
|
|
AddOverlays(list(MA, "evidence"))
|
|
|
|
desc = "A plastic bag containing [I]."
|
|
I.forceMove(src)
|
|
stored_item = I
|
|
w_class = I.w_class
|
|
|
|
|
|
/obj/item/evidencebag/attack_self(mob/user as mob)
|
|
if(contents.len)
|
|
var/obj/item/I = contents[1]
|
|
user.visible_message("<b>[user]</b> takes \the [I] out of \the [src].", SPAN_NOTICE("You take \the [I] out of \the [src]."),\
|
|
"You hear someone rustle around in a plastic bag, and remove something.")
|
|
ClearOverlays() //remove the overlays
|
|
|
|
user.put_in_hands(I)
|
|
stored_item = null
|
|
|
|
w_class = initial(w_class)
|
|
icon_state = "evidenceobj"
|
|
desc = "An empty evidence bag."
|
|
else
|
|
to_chat(user, "[src] is empty.")
|
|
icon_state = "evidenceobj"
|
|
return
|
|
|
|
/obj/item/evidencebag/examine(mob/user, distance, is_adjacent, infix, suffix, show_extended)
|
|
. = ..()
|
|
if (stored_item)
|
|
examinate(user, stored_item, show_extended)
|
|
|
|
/obj/item/evidencebag/attackby(obj/item/attacking_item, mob/user)
|
|
if(attacking_item.tool_behaviour == TOOL_PEN || istype(attacking_item, /obj/item/flashlight/pen))
|
|
var/tmp_label = sanitizeSafe( tgui_input_text(user, "Enter a label for [name]", "Label", label_text, MAX_NAME_LEN), MAX_NAME_LEN )
|
|
if(length(tmp_label) > MAX_NAME_LEN)
|
|
to_chat(user, SPAN_NOTICE("The label can be at most [MAX_NAME_LEN] characters long."))
|
|
else
|
|
to_chat(user, SPAN_NOTICE("You set the label to \"[tmp_label]\"."))
|
|
label_text = tmp_label
|
|
update_name_label()
|
|
return
|
|
. = ..()
|
|
|
|
/obj/item/evidencebag/proc/update_name_label(var/base_name = initial(name))
|
|
SEND_SIGNAL(src, COMSIG_BASENAME_SETNAME, args)
|
|
if(label_text == "")
|
|
name = base_name
|
|
else
|
|
name = "[base_name] ([label_text])"
|