// checks for when items are consumed by trash/ore eater /obj/item/proc/on_trash_eaten(mob/living/user, send_failure_message) SHOULD_CALL_PARENT(TRUE) var/signal_results = SEND_SIGNAL(src, COMSIG_ITEM_TRASH_EATEN, user) | SEND_SIGNAL(user, COMSIG_MOB_TRASH_EATING, src) if(signal_results & COMSIG_ITEM_TRASH_EAT_DENY) // A component attached to the item or the mob said we cannot eat this return FALSE if(signal_results & COMSIG_ITEM_TRASH_EAT_FORCED) // Ignore everything including blacklist, prefs and adminbus. Component is handling the rules. return TRUE var/item_found = recursive_trash_eat_search(user) var/message_to_send if(item_found) //Checks for blacklisted items. message_to_send = "You are not allowed to eat \the [item_found]." if(!trash_eatable) //OOC pref. This /IS/ respected, even if expanded_trasheat is enabled message_to_send = "You can't eat that so casually!" if(hidden_uplink) message_to_send = "You really should not be eating this." message_admins("[key_name(user)] has attempted to ingest an uplink item. ([user ? ADMIN_JMP(user) : "null"])") if(!message_to_send) return TRUE if(send_failure_message) to_chat(user, span_warning(message_to_send)) return FALSE ///Checks to see if the item fails critieria to allow it to be eaten. Does NOT check the blacklist, as it's checked before this is called. /obj/item/proc/check_item_devourability(mob/living/user) //If we've been admin enabled, eat anything that isn't blacklisted. if(user.expanded_trasheat) return TRUE //If it's whitelisted, eat it. if(is_type_in_list(src, GLOB.edible_trash)) return TRUE if(is_type_in_list(src, GLOB.edible_tech) && user.isSynthetic()) return TRUE return FALSE /* //The below allows checks for certain crtieria to decline it, otherwise allow it. Comented out until if(force > 30 || throwforce > 30) //Swords, etc. to_chat(user, span_warning("The [src] is too powerful to eat.")) return FALSE if(w_class >= ITEMSIZE_NORMAL) to_chat(user, span_warning("The [src] is too large to eat.")) return FALSE return TRUE */ ///Recursively searches through items for invalid items. ///Returns the blacklisted item. /obj/item/proc/recursive_trash_eat_search(mob/living/user, depth = 0) if(depth > 25) //Probably a loop. return src if(item_flags & ABSTRACT) //Abstract items are fine. return FALSE if(is_type_in_list(src, GLOB.item_vore_blacklist)) //Blacklisted item. Stop the loop here. return src if(!check_item_devourability(user)) return src for(var/obj/item/next_item_to_search in contents) if(next_item_to_search.recursive_trash_eat_search(user, depth + 1)) return next_item_to_search return FALSE /mob/living/proc/eat_trash_verb() set name = "Eat Trash" set category = "Abilities.Vore" set desc = "Consume held garbage." if(stat || is_paralyzed() || weakened || stunned || world.time < last_special) to_chat(src, span_warning("You can't do that in your current state.")) return FALSE if(!vore_selected) to_chat(src,span_warning("You either don't have a belly selected, or don't have a belly!")) return FALSE var/obj/item/I = get_active_hand() if(!I) to_chat(src, span_warning("You are not holding anything.")) return FALSE eat_trash_proc(I) /mob/living/proc/eat_trash_proc(obj/item/item_to_eat, thrown = FALSE) if(!item_to_eat.check_item_devourability(src)) if(!thrown) to_chat(src, span_warning("You can not eat this item.")) return FALSE if(!item_to_eat.on_trash_eaten(src, send_failure_message = !thrown)) // shows object's rejection message itself return FALSE if(!thrown) drop_item() vore_selected.nom_atom(item_to_eat) updateVRPanel() log_admin("VORE: [src] used Eat Trash to swallow [item_to_eat].") item_to_eat.after_trash_eaten(src) visible_message(span_vwarning(src.vore_selected.belly_format_string(src.vore_selected.trash_eater_in, item_to_eat, item=item_to_eat))) return TRUE /mob/living/proc/toggle_trash_catching() //Ported from chompstation set name = "Toggle Trash Catching" set category = "Abilities.Vore" set desc = "Toggle Trash Eater throw vore abilities." trash_catching = !trash_catching to_chat(src, span_vwarning("Trash catching [trash_catching ? "enabled" : "disabled"].")) /mob/living/proc/eat_minerals() //Actual eating abstracted so the user isn't given a prompt due to an argument in this verb. set name = "Eat Minerals" set category = "Abilities.Vore" set desc = "Consume held raw ore, gems and refined minerals. Snack time!" handle_eat_minerals() /// Override this for post-swallow messages. Returns true if components on mob or item allow trash eating messages /obj/proc/after_trash_eaten(mob/living/user) SHOULD_CALL_PARENT(TRUE) SEND_GLOBAL_SIGNAL(COMSIG_GLOB_ITEM_TRASH_EATEN, src, user) var/signal_results = SEND_SIGNAL(src, COMSIG_ITEM_AFTER_TRASH_EAT, user) | SEND_SIGNAL(user, COMSIG_MOB_AFTER_TRASH_EATING, src) if(signal_results & COMSIG_ITEM_AFTER_TRASH_EAT_HIDE_MESSAGE) return FALSE // Deny messages return TRUE /obj/item/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the flavor of garbage. Delicious.")) // PAI /obj/item/paicard/on_trash_eaten(mob/living/user, send_failure_message) if(!..()) return FALSE var/mob/living/silicon/pai/pocketpal = pai if(pocketpal && (!pocketpal.devourable)) to_chat(user, span_warning("\The [pocketpal] doesn't allow you to eat it.")) return FALSE return TRUE /obj/item/paicard/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the sweet flavor of digital friendship.")) if(pai && pai.client && isbelly(loc)) var/obj/belly/B = loc to_chat(pai, span_boldnotice("[B.desc]")) // Book /obj/item/book/on_trash_eaten(mob/living/user, send_failure_message) if(!..()) return FALSE if(carved) to_chat(user, span_warning("\The [src] is not worth eating without the filling.")) return FALSE return TRUE /obj/item/book/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the dry flavor of knowledge.")) // PDA /obj/item/pda/on_trash_eaten(mob/living/user, send_failure_message) if(!..()) return FALSE if(owner) var/watching = FALSE for(var/mob/living/carbon/human/H in view(user)) if(H.real_name == owner && H.client) watching = TRUE break if(!watching) //Check if they're in our bellies if we don't see them in our sight. if(user.vore_organs) for(var/obj/belly/B in user.vore_organs) for(var/mob/living/content in B.contents) if(content.real_name == owner && content.client) watching = TRUE break if(!watching) return FALSE else user.visible_message(span_warning("[user] is threatening to make [src] disappear!")) if(id) var/confirm = tgui_alert(user, "The PDA you're holding contains a vulnerable ID card. Will you risk it?", "Confirmation", list("Definitely", "Cancel")) if(confirm != "Definitely") return FALSE if(!do_after(user, 10 SECONDS, target = src)) return FALSE user.visible_message(span_warning("[user] successfully makes [src] disappear!")) return TRUE /obj/item/pda/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the sweet flavor of delicious technology.")) // ID /obj/item/card/id/on_trash_eaten(mob/living/user, send_failure_message) if(!..()) return FALSE if(registered_name) var/watching = FALSE for(var/mob/living/carbon/human/H in view(user)) if(H.real_name == registered_name && H.client) watching = TRUE break if(!watching) return FALSE else user.visible_message(span_warning("[user] is threatening to make [src] disappear!")) if(!do_after(user, 10 SECONDS, target = src)) return FALSE user.visible_message(span_warning("[user] successfully makes [src] disappear!")) return TRUE /obj/item/card/id/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the delicious flavour of a person's whole identity.")) // Shoes /obj/item/clothing/shoes/on_trash_eaten(mob/living/user, send_failure_message) if(!..()) return FALSE if(holding) to_chat(user, span_warning("There's something inside!")) return FALSE return TRUE // Capture crystal /obj/item/capture_crystal/on_trash_eaten(mob/living/user, send_failure_message) if(!..()) return FALSE if(!bound_mob.devourable) to_chat(user, span_warning("That doesn't seem like a good idea. (\The [bound_mob]'s prefs don't allow it.)")) return FALSE return TRUE /obj/item/capture_crystal/after_trash_eaten(mob/living/user) if(!..(user)) return if(bound_mob && (bound_mob in contents)) if(isbelly(loc)) to_chat(user, span_notice("You can taste the the power of command.")) // Most trash has no special check, so the rest of these are just after_trash_eaten() /obj/item/flashlight/flare/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the flavor of spicy cardboard.")) /obj/item/flame/match/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the flavor of spicy cardboard.")) /obj/item/storage/box/matches/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the flavor of spicy cardboard.")) /obj/item/flashlight/glowstick/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You found out the glowy juice only tastes like regret.")) /obj/item/trash/cigbutt/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the flavor of bitter ash. Classy.")) /obj/item/clothing/mask/smokable/after_trash_eaten(mob/living/user) if(!..(user)) return if(lit) to_chat(user, span_notice("You can taste the flavor of burning ash. Spicy!")) else to_chat(user, span_notice("You can taste the flavor of aromatic rolling paper and funny looks.")) /obj/item/paper/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the dry flavor of bureaucracy.")) /obj/item/dice/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the bitter flavor of cheating.")) /obj/item/roulette_ball/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the bitter flavor of cheating.")) /obj/item/lipstick/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the flavor of couture and style. Toddler at the make-up bag style.")) /obj/item/soap/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the bitter flavor of verbal purification.")) /obj/item/spacecash/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the flavor of wealth and reckless waste.")) /obj/item/storage/wallet/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the flavor of wealth and reckless waste.")) /obj/item/broken_bottle/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the flavor of pain. This can't possibly be healthy for your guts.")) /obj/item/material/shard/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the flavor of pain. This can't possibly be healthy for your guts.")) /obj/item/light/after_trash_eaten(mob/living/user) if(!..(user)) return if(status == LIGHT_BROKEN) to_chat(user, span_notice("You can taste the flavor of pain. This can't possibly be healthy for your guts.")) else to_chat(user, span_notice("You can taste the flavor of really bad ideas.")) /obj/item/bikehorn/tinytether/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You feel a rush of power swallowing such a large, err, tiny structure.")) /obj/item/mmi/digital/posibrain/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the sweet flavor of digital friendship. Or maybe it is something else.")) /obj/item/aicard/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the sweet flavor of digital friendship. Or maybe it is something else.")) /obj/item/reagent_containers/food/after_trash_eaten(mob/living/user) if(!..(user)) return if(!reagents?.total_volume) to_chat(user, span_notice("You can taste the flavor of garbage and leftovers. Delicious?")) else to_chat(user, span_notice("You can taste the flavor of gluttonous waste of food.")) /obj/item/clothing/accessory/collar/after_trash_eaten(mob/living/user) if(!..(user)) return to_chat(user, span_notice("You can taste the submissiveness in the wearer of [src]!"))