OH FUCK
This commit is contained in:
+119
-5
@@ -32,20 +32,29 @@
|
||||
var/datum/action/innate/end_holocall/hangup //hangup action
|
||||
|
||||
var/call_start_time
|
||||
var/head_call = FALSE //calls from a head of staff autoconnect, if the receiving pad is not secure.
|
||||
|
||||
//creates a holocall made by `caller` from `calling_pad` to `callees`
|
||||
/datum/holocall/New(mob/living/caller, obj/machinery/holopad/calling_pad, list/callees)
|
||||
/datum/holocall/New(mob/living/caller, obj/machinery/holopad/calling_pad, list/callees, elevated_access = FALSE)
|
||||
call_start_time = world.time
|
||||
user = caller
|
||||
calling_pad.outgoing_call = src
|
||||
calling_holopad = calling_pad
|
||||
head_call = elevated_access
|
||||
dialed_holopads = list()
|
||||
|
||||
for(var/I in callees)
|
||||
var/obj/machinery/holopad/H = I
|
||||
if(!QDELETED(H) && H.is_operational())
|
||||
dialed_holopads += H
|
||||
H.say("Incoming call.")
|
||||
if(head_call)
|
||||
if(H.secure)
|
||||
calling_pad.say("Auto-connection refused, falling back to call mode.")
|
||||
H.say("Incoming call.")
|
||||
else
|
||||
H.say("Incoming connection.")
|
||||
else
|
||||
H.say("Incoming call.")
|
||||
LAZYADD(H.holo_calls, src)
|
||||
|
||||
if(!dialed_holopads.len)
|
||||
@@ -79,6 +88,7 @@
|
||||
dialed_holopads.Cut()
|
||||
|
||||
if(calling_holopad)
|
||||
calling_holopad.calling = FALSE
|
||||
calling_holopad.outgoing_call = null
|
||||
calling_holopad.SetLightsAndPower()
|
||||
calling_holopad = null
|
||||
@@ -145,6 +155,7 @@
|
||||
if(!Check())
|
||||
return
|
||||
|
||||
calling_holopad.calling = FALSE
|
||||
hologram = H.activate_holo(user)
|
||||
hologram.HC = src
|
||||
|
||||
@@ -160,6 +171,8 @@
|
||||
|
||||
hangup = new(eye, src)
|
||||
hangup.Grant(user)
|
||||
playsound(H, 'sound/machines/ping.ogg', 100)
|
||||
H.say("Connection established.")
|
||||
|
||||
//Checks the validity of a holocall and qdels itself if it's not. Returns TRUE if valid, FALSE otherwise
|
||||
/datum/holocall/proc/Check()
|
||||
@@ -178,7 +191,6 @@
|
||||
. = world.time < (call_start_time + HOLOPAD_MAX_DIAL_TIME)
|
||||
if(!.)
|
||||
calling_holopad.say("No answer received.")
|
||||
// calling_holopad.temp = ""
|
||||
|
||||
if(!.)
|
||||
testing("Holocall Check fail")
|
||||
@@ -241,10 +253,10 @@
|
||||
record.caller_image = holodiskOriginal.record.caller_image
|
||||
record.entries = holodiskOriginal.record.entries.Copy()
|
||||
record.language = holodiskOriginal.record.language
|
||||
to_chat(user, "You copy the record from [holodiskOriginal] to [src] by connecting the ports!")
|
||||
to_chat(user, "<span class='notice'>You copy the record from [holodiskOriginal] to [src] by connecting the ports!</span>")
|
||||
name = holodiskOriginal.name
|
||||
else
|
||||
to_chat(user, "[holodiskOriginal] has no record on it!")
|
||||
to_chat(user, "<span class='warning'>[holodiskOriginal] has no record on it!</span>")
|
||||
..()
|
||||
|
||||
/obj/item/disk/holodisk/proc/build_record()
|
||||
@@ -331,6 +343,21 @@
|
||||
DELAY 20"}
|
||||
|
||||
/datum/preset_holoimage/engineer
|
||||
outfit_type = /datum/outfit/job/engineer
|
||||
|
||||
/datum/preset_holoimage/engineer/rig
|
||||
outfit_type = /datum/outfit/job/engineer/gloved/rig
|
||||
|
||||
/datum/preset_holoimage/engineer/ce
|
||||
outfit_type = /datum/outfit/job/ce
|
||||
|
||||
/datum/preset_holoimage/engineer/ce/rig
|
||||
outfit_type = /datum/outfit/job/engineer/gloved/rig
|
||||
|
||||
/datum/preset_holoimage/engineer/atmos
|
||||
outfit_type = /datum/outfit/job/atmos
|
||||
|
||||
/datum/preset_holoimage/engineer/atmos/rig
|
||||
outfit_type = /datum/outfit/job/engineer/gloved/rig
|
||||
|
||||
/datum/preset_holoimage/researcher
|
||||
@@ -350,3 +377,90 @@
|
||||
|
||||
/datum/preset_holoimage/clown
|
||||
outfit_type = /datum/outfit/job/clown
|
||||
|
||||
/obj/item/disk/holodisk/donutstation/whiteship
|
||||
name = "Blackbox Print-out #DS024"
|
||||
desc = "A holodisk containing the last viable recording of DS024's blackbox."
|
||||
preset_image_type = /datum/preset_holoimage/engineer/ce
|
||||
preset_record_text = {"
|
||||
NAME Geysr Shorthalt
|
||||
SAY Engine renovations complete and the ships been loaded. We all ready?
|
||||
DELAY 25
|
||||
PRESET /datum/preset_holoimage/engineer
|
||||
NAME Jacob Ullman
|
||||
SAY Lets blow this popsicle stand of a station.
|
||||
DELAY 20
|
||||
PRESET /datum/preset_holoimage/engineer/atmos
|
||||
NAME Lindsey Cuffler
|
||||
SAY Uh, sir? Shouldn't we call for a secondary shuttle? The bluespace drive on this thing made an awfully weird noise when we jumped here..
|
||||
DELAY 30
|
||||
PRESET /datum/preset_holoimage/engineer/ce
|
||||
NAME Geysr Shorthalt
|
||||
SAY Pah! Ship techie at the dock said to give it a good few kicks if it started acting up, let me just..
|
||||
DELAY 25
|
||||
SOUND punch
|
||||
SOUND sparks
|
||||
DELAY 10
|
||||
SOUND punch
|
||||
SOUND sparks
|
||||
DELAY 10
|
||||
SOUND punch
|
||||
SOUND sparks
|
||||
SOUND warpspeed
|
||||
DELAY 15
|
||||
PRESET /datum/preset_holoimage/engineer/atmos
|
||||
NAME Lindsey Cuffler
|
||||
SAY Uhh.. is it supposed to be doing that??
|
||||
DELAY 15
|
||||
PRESET /datum/preset_holoimage/engineer/ce
|
||||
NAME Geysr Shorthalt
|
||||
SAY See? Working as intended. Now, are we all ready?
|
||||
DELAY 10
|
||||
PRESET /datum/preset_holoimage/engineer
|
||||
NAME Jacob Ullman
|
||||
SAY Is it supposed to be glowing like that?
|
||||
DELAY 20
|
||||
SOUND explosion
|
||||
|
||||
"}
|
||||
|
||||
/obj/item/disk/holodisk/ruin/snowengieruin
|
||||
name = "Blackbox Print-out #EB412"
|
||||
desc = "A holodisk containing the last moments of EB412. There's a bloody fingerprint on it."
|
||||
preset_image_type = /datum/preset_holoimage/engineer
|
||||
preset_record_text = {"
|
||||
NAME Dave Tundrale
|
||||
SAY Maria, how's Build?
|
||||
DELAY 10
|
||||
NAME Maria Dell
|
||||
PRESET /datum/preset_holoimage/engineer/atmos
|
||||
SAY It's fine, don't worry. I've got Plastic on it. And frankly, i'm kinda busy with, the, uhhm, incinerator.
|
||||
DELAY 30
|
||||
NAME Dave Tundrale
|
||||
PRESET /datum/preset_holoimage/engineer
|
||||
SAY Aight, wonderful. The science mans been kinda shit though. No RCDs-
|
||||
DELAY 20
|
||||
NAME Maria Dell
|
||||
PRESET /datum/preset_holoimage/engineer/atmos
|
||||
SAY Enough about your RCDs. They're not even that important, just bui-
|
||||
DELAY 15
|
||||
SOUND explosion
|
||||
DELAY 10
|
||||
SAY Oh, shit!
|
||||
DELAY 10
|
||||
PRESET /datum/preset_holoimage/engineer/atmos/rig
|
||||
LANGUAGE /datum/language/narsie
|
||||
NAME Unknown
|
||||
SAY RISE, MY LORD!!
|
||||
DELAY 10
|
||||
LANGUAGE /datum/language/common
|
||||
NAME Plastic
|
||||
PRESET /datum/preset_holoimage/engineer/rig
|
||||
SAY Fuck, fuck, fuck!
|
||||
DELAY 20
|
||||
SAY It's loose! CALL THE FUCKING SHUTT-
|
||||
DELAY 10
|
||||
PRESET /datum/preset_holoimage/corgi
|
||||
NAME Blackbox Automated Message
|
||||
SAY Connection lost. Dumping audio logs to disk.
|
||||
DELAY 50"}
|
||||
|
||||
Reference in New Issue
Block a user