///////////////////// Mob Living ///////////////////// /mob/living var/vore_flags = 0 // Determines if the mechanical vore preferences button will be displayed on the mob or not. var/showvoreprefs = TRUE /// Default to no vore capability. var/obj/belly/vore_selected /// List of vore containers inside a mob var/list/vore_organs = list() /// What the character tastes like var/vore_taste = null /// What the character smells like var/vore_smell = null /// Next time vore sounds get played for the prey, do not change manually as it is intended to be set automatically var/next_preyloop // // Hook for generic creation of stuff on new creatures // /hook/living_new/proc/vore_setup(mob/living/M) add_verb(M, list(/mob/living/proc/preyloop_refresh, /mob/living/proc/lick, /mob/living/proc/smell_someone, /mob/living/proc/escapeOOC)) if(M.vore_flags & NO_VORE) //If the mob isn't supposed to have a stomach, let's not give it an insidepanel so it can make one for itself, or a stomach. return TRUE add_verb(M, /mob/living/proc/insidePanel) //Tries to load prefs if a client is present otherwise gives freebie stomach spawn(2 SECONDS) // long delay because the server delays in its startup. just on the safe side. if(M) M.init_vore() //return TRUE to hook-caller return TRUE /mob/living/proc/init_vore() vore_flags |= VORE_INIT //Something else made organs, meanwhile. if(LAZYLEN(vore_organs)) return TRUE //We'll load our client's organs if we have one if(client?.prefs) if(!copy_from_prefs_vr()) to_chat(src,"ERROR: You seem to have saved vore prefs, but they couldn't be loaded.") return FALSE if(LAZYLEN(vore_organs)) vore_selected = vore_organs[1] return TRUE /mob/living/proc/lazy_init_belly() if(!length(vore_organs)) LAZYINITLIST(vore_organs) var/obj/belly/B = new /obj/belly(src) vore_selected = B B.immutable = TRUE B.name = "Stomach" B.desc = "It appears to be rather warm and wet. Makes sense, considering it's inside [name]." B.can_taste = TRUE return TRUE // Handle being clicked, perhaps with something to devour // // Refactored to use centralized vore code system - Leshana // Critical adjustments due to TG grab changes - Poojawa /mob/living/proc/vore_attack(var/mob/living/user, var/mob/living/prey, var/mob/living/pred) set waitfor = FALSE if(!user || !prey || !pred) return if(!isliving(pred)) //no badmin, you can't feed people to ghosts or objects. return lazy_init_belly() if(pred == prey) //you click your target if(!(pred.vore_flags & FEEDING)) to_chat(user, "They aren't able to be fed.") to_chat(pred, "[user] tried to feed you themselves, but you aren't voracious enough to be fed.") return feed_self_to_grabbed(user, pred) else if(pred == user) //you click yourself feed_grabbed_to_self(user, prey) else // click someone other than you/prey if(!(pred.vore_flags & FEEDING)) to_chat(user, "They aren't voracious enough to be fed.") to_chat(pred, "[user] tried to feed you [prey], but you aren't voracious enough to be fed.") return if(!(prey.vore_flags & FEEDING)) to_chat(user, "They aren't able to be fed to someone.") to_chat(prey, "[user] tried to feed you to [pred], but you aren't able to be fed to them.") return feed_grabbed_to_other(user, prey, pred) // // Eating procs depending on who clicked what // /mob/living/proc/feed_grabbed_to_self(var/mob/living/user, var/mob/living/prey) user.lazy_init_belly() var/belly = user.vore_selected return perform_the_nom(user, prey, user, belly) /mob/living/proc/feed_self_to_grabbed(var/mob/living/user, var/mob/living/pred) pred.lazy_init_belly() var/belly = input("Choose Belly") in pred.vore_organs return perform_the_nom(user, user, pred, belly) /mob/living/proc/feed_grabbed_to_other(var/mob/living/user, var/mob/living/prey, var/mob/living/pred) pred.lazy_init_belly() var/belly = input("Choose Belly") in pred.vore_organs return perform_the_nom(user, prey, pred, belly) // // Master vore proc that actually does vore procedures // /mob/living/proc/perform_the_nom(var/mob/living/user, var/mob/living/prey, var/mob/living/pred, var/obj/belly/belly, var/delay) //Sanity if(!user || !prey || !pred || !istype(belly) || !(belly in pred.vore_organs)) testing("[user] attempted to feed [prey] to [pred], via [lowertext(belly.name)] but it went wrong.") return if (!(prey.vore_flags & DEVOURABLE)) to_chat(user, "This can't be eaten!") return FALSE // The belly selected at the time of noms var/attempt_msg = "ERROR: Vore message couldn't be created. Notify a dev. (at)" var/success_msg = "ERROR: Vore message couldn't be created. Notify a dev. (sc)" // Prepare messages if(user == pred) //Feeding someone to yourself attempt_msg = text("[] is attemping to [] [] into their []!",pred,lowertext(belly.vore_verb),prey,lowertext(belly.name)) success_msg = text("[] manages to [] [] into their []!",pred,lowertext(belly.vore_verb),prey,lowertext(belly.name)) else //Feeding someone to another person attempt_msg = text("[] is attempting to make [] [] [] into their []!",user,pred,lowertext(belly.vore_verb),prey,lowertext(belly.name)) success_msg = text("[] manages to make [] [] [] into their []!",user,pred,lowertext(belly.vore_verb),prey,lowertext(belly.name)) if(!prey.Adjacent(user)) // let's not even bother attempting it yet if they aren't next to us. return FALSE // Announce that we start the attempt! user.visible_message(attempt_msg) // Now give the prey time to escape... return if they did var/swallow_time if(delay) swallow_time = delay else swallow_time = istype(prey, /mob/living/carbon/human) ? belly.human_prey_swallow_time : belly.nonhuman_prey_swallow_time //Timer and progress bar if(!do_after(user, swallow_time, prey)) return FALSE // Prey escaped (or user disabled) before timer expired. if(!prey.Adjacent(user)) //double check'd just in case they moved during the timer and the do_mob didn't fail for whatever reason return FALSE // If we got this far, nom successful! Announce it! user.visible_message(success_msg) // Actually shove prey into the belly. belly.nom_mob(prey, user) stop_pulling() // Flavor handling if(belly.can_taste && prey.get_taste_message(FALSE)) to_chat(belly.owner, "[prey] tastes of [prey.get_taste_message(FALSE)].") // Inform Admins var/prey_braindead var/prey_stat if(prey.ckey) prey_stat = prey.stat//only return this if they're not an unmonkey or whatever if(!prey.client)//if they disconnected, tell us prey_braindead = TRUE if (pred == user) message_admins("[ADMIN_LOOKUPFLW(pred)] ate [ADMIN_LOOKUPFLW(prey)][!prey_braindead ? "" : " (BRAINDEAD)"][prey_stat ? " (DEAD/UNCONSCIOUS)" : ""].") pred.log_message("[key_name(pred)] ate [key_name(prey)].", LOG_ATTACK) prey.log_message("[key_name(prey)] was eaten by [key_name(pred)].", LOG_ATTACK) else message_admins("[ADMIN_LOOKUPFLW(user)] forced [ADMIN_LOOKUPFLW(pred)] to eat [ADMIN_LOOKUPFLW(prey)].") user.log_message("[key_name(user)] forced [key_name(pred)] to eat [key_name(prey)].", LOG_ATTACK) pred.log_message("[key_name(user)] forced [key_name(pred)] to eat [key_name(prey)].", LOG_ATTACK) prey.log_message("[key_name(user)] forced [key_name(pred)] to eat [key_name(prey)].", LOG_ATTACK) return TRUE // //End vore code. // // Our custom resist catches for /mob/living // /mob/living/proc/vore_process_resist() //Are we resisting from inside a belly? if(isbelly(loc)) var/obj/belly/B = loc B.relay_resist(src) return TRUE //resist() on living does this TRUE thing. //Other overridden resists go here return FALSE // internal slimy button in case the loop stops playing but the player wants to hear it /mob/living/proc/preyloop_refresh() set name = "Internal loop refresh" set category = "Vore" src.stop_sound_channel(CHANNEL_PREYLOOP) // sanity just in case if(isbelly(loc)) var/sound/preyloop = sound('sound/vore/prey/loop.ogg') SEND_SOUND(src, preyloop) else to_chat(src, "You aren't inside anything, you clod.") // OOC Escape code for pref-breaking or AFK preds // /mob/living/proc/escapeOOC() set name = "OOC Escape" set category = "OOC" // GS13 Change //GS13 EDIT START handle_transformation_ooc_escape() //GS13 EDIT END //You're in a belly! if(isbelly(loc)) var/obj/belly/B = loc var/confirm = alert(src, "You're in a mob. If you're otherwise unable to escape from a pred AFK for a long time, use this.", "Confirmation", "Okay", "Cancel") if(!confirm == "Okay" || loc != B) return //Actual escaping B.release_specific_contents(src,TRUE) //we might as well take advantage of that specific belly's handling. Else we stay blinded forever. message_admins("[src] used OOC escape to escape from [B.owner]'s belly.") log_consent("[src] used OOC escape to escape from [B.owner]'s belly.") src.stop_sound_channel(CHANNEL_PREYLOOP) SEND_SIGNAL(src, COMSIG_CLEAR_MOOD_EVENT, "fedprey", /datum/mood_event/fedprey) for(var/mob/living/simple_animal/SA in range(10)) SA.prey_excludes[src] = world.time if(isanimal(B.owner)) var/mob/living/simple_animal/SA = B.owner SA.update_icons() //You're in a dogborg! else if(istype(loc, /obj/item/dogborg/sleeper)) var/obj/item/dogborg/sleeper/belly = loc //The belly! var/confirm = alert(src, "You're in a dogborg sleeper. This is for escaping from preference-breaking or if your predator disconnects/AFKs. You can also resist out naturally too.", "Confirmation", "Okay", "Cancel") if(!confirm == "Okay" || loc != belly) return //Actual escaping belly.go_out(src) //Just force-ejects from the borg as if they'd clicked the eject button. message_admins("[src] used OOC escape from a dogborg sleeper.") log_consent("[src] used OOC escape from a dogborg sleeper.") else to_chat(src,"You aren't inside anyone, though, is the thing.") /mob/living/proc/copy_to_prefs_vr() if(!client || !client.prefs) to_chat(src,"You attempted to save your vore prefs but somehow you're in this character without a client.prefs variable. Tell a dev.") return FALSE client.prefs.vore_flags = vore_flags // there's garbage data in here, but it doesn't matter client.prefs.vore_taste = vore_taste client.prefs.vore_smell = vore_smell var/list/serialized = list() for(var/belly in vore_organs) var/obj/belly/B = belly serialized += list(B.serialize()) //Can't add a list as an object to another list in Byond. Thanks. client.prefs.belly_prefs = serialized client.prefs.save_character() return TRUE // // Proc for applying vore preferences, given bellies // /mob/living/proc/copy_from_prefs_vr() if(!client || !client.prefs) to_chat(src,"You attempted to apply your vore prefs but somehow you're in this character without a client.prefs variable. Tell a dev.") return FALSE vore_flags |= VOREPREF_INIT COPY_SPECIFIC_BITFIELDS(vore_flags, client.prefs.vore_flags, DIGESTABLE | DEVOURABLE | FEEDING | LICKABLE | SMELLABLE | ABSORBABLE | MOBVORE) vore_taste = client.prefs.vore_taste vore_smell = client.prefs.vore_smell release_vore_contents(silent = TRUE) QDEL_LIST(vore_organs) for(var/entry in client.prefs.belly_prefs) list_to_object(entry,src) return TRUE // // Release everything in every vore organ // /mob/living/proc/release_vore_contents(var/include_absorbed = TRUE, var/silent = FALSE) for(var/belly in vore_organs) var/obj/belly/B = belly B.release_all_contents(include_absorbed, silent) // // Returns examine messages for bellies // /mob/living/proc/examine_bellies() if(!show_pudge()) //Some clothing or equipment can hide this. return "" var/message = "" for (var/belly in vore_organs) var/obj/belly/B = belly message += B.get_examine_msg() return message // // Whether or not people can see our belly messages // /mob/living/proc/show_pudge() return TRUE //Can override if you want. /mob/living/carbon/human/show_pudge() //A uniform could hide it. if(istype(w_uniform,/obj/item/clothing)) var/obj/item/clothing/under = w_uniform if(under.hides_bulges) return FALSE //We return as soon as we find one, no need for 'else' really. if(istype(wear_suit,/obj/item/clothing)) var/obj/item/clothing/suit = wear_suit if(suit.hides_bulges) return FALSE return ..() // // Clearly super important. Obviously. // /mob/living/proc/lick() set name = "Lick Someone" set category = "Vore" set desc = "Lick someone nearby!" if(incapacitated(ignore_restraints = TRUE)) to_chat(src, "You can't do that while incapacitated.") return if(!CheckActionCooldown()) to_chat(src, "You can't do that so fast, slow down.") return DelayNextAction(CLICK_CD_MELEE, flush = TRUE) var/list/lickable = list() for(var/mob/living/L in view(1)) if(L != src && (!L.ckey || L.client?.prefs.vore_flags & LICKABLE) && Adjacent(L)) LAZYADD(lickable, L) for(var/mob/living/listed in lickable) lickable[listed] = new /mutable_appearance(listed) if(!lickable) return var/mob/living/tasted = show_radial_menu(src, src, lickable, radius = 40, require_near = TRUE) if(QDELETED(tasted) || (tasted.ckey && !(tasted.client?.prefs.vore_flags & LICKABLE)) || !Adjacent(tasted) || incapacitated(ignore_restraints = TRUE)) return if(ishuman(tasted)) var/mob/living/carbon/human/H = tasted H.wash_cream() visible_message("[src] licks [tasted]!","You lick [tasted]. They taste rather like [tasted.get_taste_message()].","Slurp!") /mob/living/proc/get_taste_message(allow_generic = TRUE, datum/species/mrace) if(!vore_taste && !allow_generic) return FALSE var/taste_message = "" if(vore_taste && (vore_taste != "")) taste_message += "[vore_taste]" else if(ishuman(src)) taste_message += "they haven't bothered to set their flavor text" else taste_message += "a plain old normal [src]" return taste_message // // Equally important as the above // /mob/living/proc/smell_someone() set name = "Smell Someone" set category = "Vore" set desc = "Smell someone nearby!" if(incapacitated(ignore_restraints = TRUE)) to_chat(src, "You can't do that while incapacitated.") return if(!CheckActionCooldown()) to_chat(src, "You can't do that so fast, slow down.") return DelayNextAction(CLICK_CD_MELEE, flush = TRUE) var/list/smellable = list() for(var/mob/living/L in view(1)) if(L != src && (!L.ckey || L.client?.prefs.vore_flags & SMELLABLE) && Adjacent(L)) LAZYADD(smellable, L) for(var/mob/living/listed in smellable) smellable[listed] = new /mutable_appearance(listed) if(!smellable) return var/mob/living/sniffed = show_radial_menu(src, src, smellable, radius = 40, require_near = TRUE) if(QDELETED(sniffed) || (sniffed.ckey && !(sniffed.client?.prefs.vore_flags & SMELLABLE)) || !Adjacent(sniffed) || incapacitated(ignore_restraints = TRUE)) return visible_message("[src] smells [sniffed]!","You smell [sniffed]. They smell like [sniffed.get_smell_message()].","Sniff!") /mob/living/proc/get_smell_message(allow_generic = TRUE, datum/species/mrace) if(!vore_smell && !allow_generic) return FALSE var/smell_message = "" if(vore_smell && (vore_smell != "")) smell_message += "[vore_smell]" else if(ishuman(src)) var/mob/living/carbon/human/H = src smell_message += "a normal [H.custom_species ? H.custom_species : H.dna.species]" else smell_message += "a plain old normal [src]" return smell_message // Check if an object is capable of eating things, based on vore_organs // /proc/has_vore_belly(var/mob/living/O) if(istype(O)) if(O.vore_organs.len > 0) return TRUE return FALSE