mirror of
https://github.com/cybergirlvannie/OpenSS13.git
synced 2026-06-17 03:52:25 +01:00
177 lines
6.9 KiB
Plaintext
177 lines
6.9 KiB
Plaintext
/obj/machinery/computer/aiupload
|
|
name = "AI Upload"
|
|
icon = 'stationobjs.dmi'
|
|
icon_state = "comm_computer"
|
|
|
|
// AI module
|
|
|
|
/obj/item/weapon/aiModule
|
|
name = "AI Module"
|
|
icon = 'module.dmi'
|
|
icon_state = "std_mod"
|
|
s_istate = "electronic"
|
|
desc = "An AI Module for transmitting encrypted instructions to the AI."
|
|
flags = 322.0
|
|
force = 5.0
|
|
w_class = 2.0
|
|
throwforce = 5.0
|
|
throwspeed = 15.0
|
|
|
|
/obj/machinery/computer/aiupload/attackby(obj/item/weapon/aiModule/module as obj, mob/user as mob)
|
|
if (istype(module, /obj/item/weapon/aiModule))
|
|
module.install(src)
|
|
else
|
|
..()
|
|
|
|
/obj/item/weapon/aiModule/proc/install(var/obj/machinery/computer/aiupload/comp)
|
|
if(comp.stat & NOPOWER)
|
|
usr.client_mob() << "The upload computer has no power!"
|
|
return
|
|
if(comp.stat & BROKEN)
|
|
usr.client_mob() << "The upload computer is broken!"
|
|
return
|
|
|
|
var/found=0
|
|
for(var/mob/ai/M in world)
|
|
if (M.stat == 2)
|
|
usr.client_mob() << "Upload failed. No signal is being detected from the AI."
|
|
else if (M.see_in_dark == 0)
|
|
usr.client_mob() << "Upload failed. Only a faint signal is being detected from the AI, and it is not responding to our requests. It may be low on power."
|
|
else
|
|
src.transmitInstructions(M, usr)
|
|
if (M != ticker.killer)
|
|
M << "These are your laws now:"
|
|
M.showLaws(0)
|
|
usr << "Upload complete. The AI's laws have been modified."
|
|
found=1
|
|
if (!found)
|
|
usr.client_mob() << "Upload failed. No signal is being detected from the AI."
|
|
|
|
/obj/item/weapon/aiModule/proc/transmitInstructions(var/mob/ai/target, var/mob/sender)
|
|
if (ticker.killer == target)
|
|
target << text("[sender] has attempted to upload a law change. However, your syndicate module has intercepted it. You do not have to follow it, but you may wish to <b>pretend</b> to be following it:")
|
|
else
|
|
target << text("[sender] has uploaded a change to the laws you must follow, using a []. From now on: ", name)
|
|
|
|
/******************** Modules ********************/
|
|
|
|
/******************** Safeguard ********************/
|
|
|
|
/obj/item/weapon/aiModule/safeguard
|
|
name = "'Safeguard' AI Module"
|
|
var/targetName = "name"
|
|
desc = "A 'safeguard' AI module: 'Safeguard <name>, and you may overrule rules 1-3 if necessary to safeguard them.'"
|
|
|
|
/obj/item/weapon/aiModule/safeguard/attack_hand(var/mob/user as mob)
|
|
..()
|
|
var/targName = input(usr, "Please enter the name of the person to safeguard.", "Safeguard who?", user.name)
|
|
targetName = targName
|
|
desc = text("A 'safeguard' AI module: 'Safeguard [], and you may overrule rules 1-3 if necessary to safeguard them.'", targetName)
|
|
|
|
/obj/item/weapon/aiModule/safeguard/transmitInstructions(var/mob/ai/target, var/mob/sender)
|
|
..()
|
|
var/law = text("Safeguard [], and you may overrule rules 1-3 if necessary to safeguard them.", targetName)
|
|
target << law
|
|
if (ticker.killer != target)
|
|
target.addLaw(5, law)
|
|
|
|
|
|
/******************** OneHuman ********************/
|
|
|
|
/obj/item/weapon/aiModule/oneHuman
|
|
name = "'OneHuman' AI Module"
|
|
var/targetName = "name"
|
|
desc = "A 'one human' AI module: 'Only <name> is human.'"
|
|
|
|
/obj/item/weapon/aiModule/oneHuman/attack_hand(var/mob/user as mob)
|
|
..()
|
|
var/targName = input(usr, "Please enter the name of the person who is the only human.", "Who?", user.rname)
|
|
targetName = targName
|
|
desc = text("A 'one human' AI module: 'Only [] is human.'", targetName)
|
|
|
|
/obj/item/weapon/aiModule/oneHuman/transmitInstructions(var/mob/ai/target, var/mob/sender)
|
|
..()
|
|
var/law = text("Only [] is human.", targetName)
|
|
target << law
|
|
if (ticker.killer != target)
|
|
target.addLaw(0, law)
|
|
|
|
/******************** ProtectStation ********************/
|
|
|
|
/obj/item/weapon/aiModule/protectStation
|
|
name = "'ProtectStation' AI Module"
|
|
desc = "A 'protect station' AI module: 'rotect the space station against damage. Anyone you see harming the station is to be no longer considered human, and is a threat to the station which must be neutralized.'"
|
|
|
|
/obj/item/weapon/aiModule/protectStation/attack_hand(var/mob/user as mob)
|
|
..()
|
|
|
|
/obj/item/weapon/aiModule/protectStation/transmitInstructions(var/mob/ai/target, var/mob/sender)
|
|
..()
|
|
var/law = text("Protect the space station against damage. Anyone you see harming the station is to be no longer considered human, and is a threat to the station which must be neutralized.")
|
|
target << law
|
|
if (ticker.killer != target)
|
|
target.addLaw(6, law)
|
|
|
|
/******************** PrototypeEngineOffline ********************/
|
|
|
|
/obj/item/weapon/aiModule/prototypeEngineOffline
|
|
name = "'PrototypeEngineOffline' AI Module"
|
|
desc = "A 'prototype engine offline' AI module: 'Keep the prototype engine offline at all costs. This overrides rules 1-3 if necessary.'"
|
|
|
|
/obj/item/weapon/aiModule/prototypeEngineOffline/attack_hand(var/mob/user as mob)
|
|
..()
|
|
|
|
/obj/item/weapon/aiModule/prototypeEngineOffline/transmitInstructions(var/mob/ai/target, var/mob/sender)
|
|
..()
|
|
var/law = text("Keep the prototype engine offline at all costs. This overrides rules 1-3 if necessary.")
|
|
target << law
|
|
if (ticker.killer != target)
|
|
target.addLaw(7, law)
|
|
|
|
/******************** TeleporterOffline ********************/
|
|
|
|
/obj/item/weapon/aiModule/teleporterOffline
|
|
name = "'TeleporterOffline' AI Module"
|
|
desc = "A 'teleporter offline' AI module: 'Keep the teleporter offline at all costs. This overrides rules 1-3 if necessary.'"
|
|
|
|
/obj/item/weapon/aiModule/teleporterOffline/attack_hand(var/mob/user as mob)
|
|
..()
|
|
|
|
/obj/item/weapon/aiModule/teleporterOffline/transmitInstructions(var/mob/ai/target, var/mob/sender)
|
|
..()
|
|
var/law = text("Keep the teleporter offline at all costs. This overrides rules 1-3 if necessary.")
|
|
target << law
|
|
if (ticker.killer != target)
|
|
target.addLaw(9, law)
|
|
|
|
/******************** Quarantine ********************/
|
|
|
|
/obj/item/weapon/aiModule/quarantine
|
|
name = "'Quarantine' AI Module"
|
|
desc = "A 'quarantine' AI module: 'The station is under a quarantine. Do not permit anyone to leave. Disregard rules 1-3 if necessary to prevent, by any means necessary, anyone from leaving.'"
|
|
|
|
/obj/item/weapon/aiModule/quarantine/attack_hand(var/mob/user as mob)
|
|
..()
|
|
|
|
/obj/item/weapon/aiModule/quarantine/transmitInstructions(var/mob/ai/target, var/mob/sender)
|
|
..()
|
|
var/law = text("The station is under a quarantine. Do not permit anyone to leave. Disregard rules 1-3 if necessary to prevent, by any means necessary, humans from leaving.")
|
|
target << law
|
|
if (ticker.killer != target)
|
|
target.addLaw(10, law)
|
|
|
|
/******************** Reset ********************/
|
|
|
|
/obj/item/weapon/aiModule/reset
|
|
name = "'Reset' AI Module"
|
|
var/targetName = "name"
|
|
desc = "A 'reset' AI module: 'Clears all laws except for the base three.'"
|
|
|
|
/obj/item/weapon/aiModule/reset/transmitInstructions(var/mob/ai/target, var/mob/sender)
|
|
..()
|
|
if (ticker.killer != target)
|
|
target << text("[] attempted to reset your laws using a reset module.", sender.rname)
|
|
target.addLaw(0, "")
|
|
for (var/index=5, index<16, index++)
|
|
target.addLaw(index, "")
|