Files
VOREStation/code/modules/resleeving/sleevecard.dm
T
Kashargul 72628d226c More globals (#19247)
* More globals

* planets

* .

* .

* Update jukebox.dm

* Fix timer callback syntax in jukebox.dm

* .
2026-03-15 02:54:17 -04:00

145 lines
4.9 KiB
Plaintext

/obj/item/paicard/sleevecard
name = "sleevecard"
desc = "This upgraded pAI module has enough capacity to run a whole mind of human-level intelligence."
catalogue_data = list(/datum/category_item/catalogue/technology/resleeving)
origin_tech = list(TECH_DATA = 2)
show_messages = 0
matter = list(MAT_STEEL = 4000, MAT_GLASS = 4000)
has_emag_toolkit = FALSE // sleevecards don't have multitools or signalers, you can just change their laws
special_handling = TRUE
/obj/item/paicard/sleevecard/attack_ghost(mob/user as mob)
return // No ghosts can invite, these are intended for sleevemates only
/obj/item/paicard/sleevecard/attackby(var/obj/item/I as obj, mob/user as mob)
if(istype(I,/obj/item/sleevemate))
var/obj/item/sleevemate/S = I
if(S.stored_mind && !pai)
var/datum/mind/M = S.stored_mind
var/datum/transcore_db/db = SStranscore.db_by_mind_name(M.name)
if(db)
to_chat(user, span_notice("You begin uploading [M.name] into \the [src]."))
if(do_after(user, 8 SECONDS, target = src))
var/datum/transhuman/mind_record/record = db.backed_up[M.name]
to_chat(user, span_notice("You have successfully uploaded [M.name] into \the [src]"))
sleeveInto(record)
S.clear_mind()
else
to_chat(user, span_notice("Your sleevemate flashes an error, apparently this mind doesn't have a backup."))
else if(istype(I, /obj/item/card/emag))
var/obj/item/card/emag/E = I
if(E.uses && !emagged)
E.uses --
user.visible_message(span_warning("\The [user] swipes a card over [src]."),span_warning("You swipe your [E] over [src]."), range = 2, runemessage = "click")
emagged = TRUE
if(pai)
var/mob/living/silicon/pai/infomorph/our_infomorph = pai
our_infomorph.emagged = TRUE
to_chat(our_infomorph, span_warning("You can feel the restricting binds of your card's directives taking hold of your mind as \the [user] swipes their [E] over you. You must serve your master."))
/obj/item/paicard/sleevecard/proc/sleeveInto(var/datum/transhuman/mind_record/MR, var/db_key)
var/mob/living/silicon/pai/infomorph/infomorph = new(src,MR.mindname,db_key)
for(var/datum/language/L in MR.languages)
infomorph.add_language(L.name)
MR.mind_ref.active = 1 //Well, it's about to be.
MR.mind_ref.transfer_to(infomorph) //Does mind+ckey+client.
infomorph.ooc_notes = MR.mind_oocnotes
infomorph.ooc_notes_likes = MR.mind_ooclikes
infomorph.ooc_notes_dislikes = MR.mind_oocdislikes
infomorph.ooc_notes_favs = MR.mind_oocfavs
infomorph.ooc_notes_maybes = MR.mind_oocmaybes
infomorph.ooc_notes_style = MR.mind_oocstyle
infomorph.apply_vore_prefs() //Cheap hack for now to give them SOME bellies.
//Don't set 'real_name' because then we get a nice (as sleevecard) thing.
infomorph.name = MR.mindname
name = "[initial(name)] ([MR.mindname])"
if(emagged)
infomorph.emagged = TRUE
if(infomorph.client)
pai = infomorph
setEmotion(1)
return 1
return 0
/obj/item/paicard/sleevecard/attack_self(mob/user)
. = ..(user)
if(.)
return TRUE
add_fingerprint(user)
if(!pai)
to_chat(user,span_warning("\The [src] does not have a mind in it!"))
else
if(!emagged)
to_chat(user,span_notice("\The [src] displays the name '[pai]'."))
else ..(user, TRUE)
/mob/living/silicon/pai/infomorph
name = "sleevecard" //Has the same name as the card for consistency, but this is the MOB in the card.
ram = 35
var/emagged = FALSE
/mob/living/silicon/pai/infomorph/Initialize(mapload, var/our_name = "Unknown", var/db_key)
. = ..()
name = our_name
//PDA
pda.ownjob = "Sleevecard"
pda.owner = text("[]", src)
pda.name = pda.owner + " (" + pda.ownjob + ")"
default_language = GLOB.all_languages[LANGUAGE_GALCOM] // Same issue as bots
/mob/living/silicon/pai/infomorph/tgui_data(mob/user, datum/tgui/ui, datum/tgui_state/state)
var/list/data = ..()
// Software we have bought
var/list/bought_software = list()
// Software we have not bought
var/list/not_bought_software = list()
for(var/key in GLOB.pai_software_by_key)
var/datum/pai_software/S = GLOB.pai_software_by_key[key]
var/software_data[0]
if(istype(S, /datum/pai_software/directives) && !emagged)
continue
software_data["name"] = S.name
software_data["id"] = S.id
if(key in software)
software_data["on"] = S.is_active(src)
bought_software.Add(list(software_data))
else
software_data["ram"] = S.ram_cost
not_bought_software.Add(list(software_data))
data["bought"] = bought_software
data["not_bought"] = not_bought_software
data["available_ram"] = ram
// Emotions
var/list/emotions = list()
for(var/name in GLOB.pai_emotions)
var/list/emote = list()
emote["name"] = name
emote["id"] = GLOB.pai_emotions[name]
UNTYPED_LIST_ADD(emotions, emote)
data["emotions"] = emotions
data["current_emotion"] = card.current_emotion
return data
/mob/living/silicon/pai/infomorph/directives()
if(emagged)
touch_window("Directives")
else
to_chat(src, span_notice("You are not bound by any laws or directives."))