mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 22:17:32 +01:00
* R&D Rework PT1 * Give robotics access too * Run prettier * More lints * This is INCREDIBLY ironic * Re-add blacklisting * Oops * Review changes * Some fixes * Fix outstanding issues * Warriorstar fixes * Tiny tweak
777 lines
25 KiB
Plaintext
777 lines
25 KiB
Plaintext
/obj/item/circuitboard
|
|
/// Use `board_name` instead of this.
|
|
name = "circuit board"
|
|
icon = 'icons/obj/module.dmi'
|
|
icon_state = "id_mod"
|
|
item_state = "electronic"
|
|
origin_tech = "programming=2"
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
materials = list(MAT_GLASS=200)
|
|
usesound = 'sound/items/deconstruct.ogg'
|
|
/// Use this instead of `name`. Formats as: `circuit board ([board_name])`
|
|
var/board_name = null
|
|
var/build_path = null
|
|
var/board_type = "computer"
|
|
var/list/req_components = null
|
|
|
|
/obj/item/circuitboard/computer
|
|
board_type = "computer"
|
|
|
|
/obj/item/circuitboard/machine
|
|
board_type = "machine"
|
|
|
|
/obj/item/circuitboard/Initialize(mapload)
|
|
. = ..()
|
|
format_board_name()
|
|
|
|
/obj/item/circuitboard/proc/format_board_name()
|
|
if(board_name) // Should always have this, but just in case.
|
|
name = "[initial(name)] ([board_name])"
|
|
else
|
|
name = "[initial(name)]"
|
|
|
|
/obj/item/circuitboard/examine(mob/user)
|
|
. = ..()
|
|
if(LAZYLEN(req_components))
|
|
var/list/nice_list = list()
|
|
for(var/B in req_components)
|
|
var/atom/A = B
|
|
if(!ispath(A))
|
|
continue
|
|
nice_list += list("[req_components[A]] [initial(A.name)]\s")
|
|
. += "<span class='notice'>Required components: [english_list(nice_list)].</span>"
|
|
|
|
/obj/item/circuitboard/message_monitor
|
|
board_name = "Message Monitor"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/message_monitor
|
|
origin_tech = "programming=2"
|
|
|
|
/obj/item/circuitboard/camera
|
|
board_name = "Camera Monitor"
|
|
desc = "A monitor board whose type can be changed when screwed."
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/security
|
|
origin_tech = "programming=2;combat=2"
|
|
var/static/list/monitor_names_paths = list(
|
|
"Camera Monitor" = /obj/machinery/computer/security,
|
|
"Wooden TV" = /obj/machinery/computer/security/wooden_tv,
|
|
"Outpost Camera Monitor" = /obj/machinery/computer/security/mining,
|
|
"Engineering Camera Monitor" = /obj/machinery/computer/security/engineering,
|
|
"Research Monitor" = /obj/machinery/computer/security/telescreen/research,
|
|
"Research Director Monitor" = /obj/machinery/computer/security/telescreen/rd,
|
|
"Prison Monitor" = /obj/machinery/computer/security/telescreen/prison,
|
|
"Interrogation Monitor" = /obj/machinery/computer/security/telescreen/interrogation,
|
|
"MiniSat Monitor" = /obj/machinery/computer/security/telescreen/minisat,
|
|
"AI Upload Monitor" = /obj/machinery/computer/security/telescreen/upload,
|
|
"Vault Monitor" = /obj/machinery/computer/security/telescreen/vault,
|
|
"Turbine Vent Monitor" = /obj/machinery/computer/security/telescreen/turbine,
|
|
"Engine Camera Monitor" = /obj/machinery/computer/security/telescreen/engine)
|
|
|
|
/obj/item/circuitboard/camera/screwdriver_act(mob/living/user, obj/item/I)
|
|
. = TRUE
|
|
if(!I.use_tool(src, user, 0, volume = I.tool_volume))
|
|
return
|
|
var/choice = tgui_input_list(user, "Circuit Setting", "What would you change the board setting to?", monitor_names_paths)
|
|
if(!choice)
|
|
return
|
|
board_name = choice
|
|
build_path = monitor_names_paths[choice]
|
|
format_board_name()
|
|
to_chat(user, "<span class='notice'>You set the board to [board_name].</span>")
|
|
|
|
/obj/item/circuitboard/camera/telescreen
|
|
board_name = "Telescreen"
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/security/telescreen
|
|
|
|
/obj/item/circuitboard/camera/engine
|
|
board_name = "Engine Camera Monitor"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/security/telescreen/engine
|
|
|
|
/obj/item/circuitboard/camera/research
|
|
board_name = "Research Monitor"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/security/telescreen/research
|
|
|
|
/obj/item/circuitboard/camera/rd
|
|
board_name = "Research Director Monitor"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/security/telescreen/rd
|
|
|
|
/obj/item/circuitboard/camera/prison
|
|
board_name = "Prison Monitor"
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/security/telescreen/prison
|
|
|
|
/obj/item/circuitboard/camera/interrogation
|
|
board_name = "Interrogation Monitor"
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/security/telescreen/interrogation
|
|
|
|
/obj/item/circuitboard/camera/minisat
|
|
board_name = "MiniSat Monitor"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/security/telescreen/minisat
|
|
|
|
/obj/item/circuitboard/camera/upload
|
|
board_name = "AI Upload Monitor"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/security/telescreen/upload
|
|
|
|
/obj/item/circuitboard/camera/vault
|
|
board_name = "Vault Monitor"
|
|
icon_state = "command"
|
|
build_path = /obj/machinery/computer/security/telescreen/vault
|
|
|
|
/obj/item/circuitboard/camera/turbine
|
|
board_name = "Turbine Vent Monitor"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/security/telescreen/turbine
|
|
|
|
/obj/item/circuitboard/camera/wooden_tv
|
|
board_name = "Wooden TV"
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/security/wooden_tv
|
|
|
|
/obj/item/circuitboard/camera/mining
|
|
board_name = "Outpost Camera Monitor"
|
|
icon_state = "supply"
|
|
build_path = /obj/machinery/computer/security/mining
|
|
|
|
/obj/item/circuitboard/camera/engineering
|
|
board_name = "Engineering Camera Monitor"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/security/engineering
|
|
|
|
/obj/item/circuitboard/xenobiology
|
|
board_name = "Xenobiology Console"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/camera_advanced/xenobio
|
|
origin_tech = "programming=3;biotech=3"
|
|
|
|
/obj/item/circuitboard/aicore
|
|
board_name = "AI Core"
|
|
icon_state = "science"
|
|
origin_tech = "programming=3"
|
|
board_type = "other"
|
|
|
|
/obj/item/circuitboard/aiupload
|
|
board_name = "AI Upload"
|
|
icon_state = "command"
|
|
build_path = /obj/machinery/computer/aiupload
|
|
origin_tech = "programming=4;engineering=4"
|
|
|
|
/obj/item/circuitboard/aiupload_broken
|
|
board_name = "AI Upload"
|
|
desc = "<span class='warning'>The board is charred and smells of burnt plastic. It has been rendered useless.</span>"
|
|
icon_state = "command_broken"
|
|
|
|
/obj/item/circuitboard/borgupload
|
|
board_name = "Cyborg Upload"
|
|
icon_state = "command"
|
|
build_path = /obj/machinery/computer/borgupload
|
|
origin_tech = "programming=4;engineering=4"
|
|
|
|
/obj/item/circuitboard/nonfunctional
|
|
board_name = "destroyed"
|
|
desc = "The board is barely recognizable. Its original function is a mystery."
|
|
icon_state = "command_broken"
|
|
|
|
/obj/item/circuitboard/med_data
|
|
board_name = "Medical Records"
|
|
icon_state = "medical"
|
|
build_path = /obj/machinery/computer/med_data
|
|
origin_tech = "programming=2;biotech=2"
|
|
|
|
/obj/item/circuitboard/pandemic
|
|
board_name = "PanD.E.M.I.C. 2200"
|
|
icon_state = "medical"
|
|
build_path = /obj/machinery/computer/pandemic
|
|
origin_tech = "programming=2;biotech=2"
|
|
|
|
/obj/item/circuitboard/scan_consolenew
|
|
board_name = "DNA Machine"
|
|
icon_state = "medical"
|
|
build_path = /obj/machinery/computer/scan_consolenew
|
|
origin_tech = "programming=2;biotech=2"
|
|
|
|
/obj/item/circuitboard/communications
|
|
board_name = "Communications Console"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/communications
|
|
origin_tech = "programming=3;magnets=3"
|
|
|
|
/obj/item/circuitboard/card
|
|
board_name = "ID Computer"
|
|
icon_state = "command"
|
|
build_path = /obj/machinery/computer/card
|
|
origin_tech = "programming=3"
|
|
|
|
/obj/item/circuitboard/card/minor
|
|
board_name = "Dept ID Computer"
|
|
icon_state = "command"
|
|
build_path = /obj/machinery/computer/card/minor
|
|
var/target_dept = TARGET_DEPT_GENERIC
|
|
|
|
/obj/item/circuitboard/card/minor/hos
|
|
board_name = "Sec ID Computer"
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/card/minor/hos
|
|
target_dept = TARGET_DEPT_SEC
|
|
|
|
/obj/item/circuitboard/card/minor/cmo
|
|
board_name = "Medical ID Computer"
|
|
icon_state = "medical"
|
|
build_path = /obj/machinery/computer/card/minor/cmo
|
|
target_dept = TARGET_DEPT_MED
|
|
|
|
/obj/item/circuitboard/card/minor/qm
|
|
board_name = "Supply ID Computer"
|
|
build_path = /obj/machinery/computer/card/minor/qm
|
|
target_dept = TARGET_DEPT_SUP
|
|
|
|
/obj/item/circuitboard/card/minor/rd
|
|
board_name = "Science ID Computer"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/card/minor/rd
|
|
target_dept = TARGET_DEPT_SCI
|
|
|
|
/obj/item/circuitboard/card/minor/ce
|
|
board_name = "Engineering ID Computer"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/card/minor/ce
|
|
target_dept = TARGET_DEPT_ENG
|
|
|
|
/obj/item/circuitboard/card/centcom
|
|
board_name = "CentComm ID Computer"
|
|
icon_state = "command"
|
|
build_path = /obj/machinery/computer/card/centcom
|
|
|
|
/obj/item/circuitboard/teleporter
|
|
board_name = "Teleporter Console"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/teleporter
|
|
origin_tech = "programming=3;bluespace=3;plasmatech=3"
|
|
|
|
/obj/item/circuitboard/secure_data
|
|
board_name = "Security Records"
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/secure_data
|
|
origin_tech = "programming=2;combat=2"
|
|
|
|
/obj/item/circuitboard/stationalert_engineering
|
|
board_name = "Station Alert Console - Engineering"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/station_alert
|
|
|
|
/obj/item/circuitboard/stationalert
|
|
board_name = "Station Alert Console"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/station_alert
|
|
|
|
/obj/item/circuitboard/atmos_alert
|
|
board_name = "Atmospheric Alert Computer"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/atmos_alert
|
|
|
|
/obj/item/circuitboard/atmoscontrol
|
|
board_name = "Central Atmospherics Computer"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/atmoscontrol
|
|
|
|
/obj/item/circuitboard/air_management
|
|
board_name = "Air Sensor Monitor"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/general_air_control
|
|
|
|
/obj/item/circuitboard/robotics
|
|
board_name = "Robotics Control Console"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/robotics
|
|
origin_tech = "programming=3"
|
|
|
|
/obj/item/circuitboard/drone_control
|
|
board_name = "Drone Control"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/drone_control
|
|
origin_tech = "programming=3"
|
|
|
|
/obj/item/circuitboard/cloning
|
|
board_name = "Cloning Machine Console"
|
|
icon_state = "medical"
|
|
build_path = /obj/machinery/computer/cloning
|
|
origin_tech = "programming=2;biotech=2"
|
|
|
|
/obj/item/circuitboard/arcade/battle
|
|
board_name = "Arcade Battle"
|
|
icon_state = "generic"
|
|
build_path = /obj/machinery/computer/arcade/battle
|
|
origin_tech = "programming=1"
|
|
|
|
/obj/item/circuitboard/arcade/orion_trail
|
|
board_name = "Orion Trail"
|
|
icon_state = "generic"
|
|
build_path = /obj/machinery/computer/arcade/orion_trail
|
|
origin_tech = "programming=1"
|
|
|
|
/obj/item/circuitboard/arcade/recruiter
|
|
board_name = "Nanotrasen Recruiter Simulator"
|
|
icon_state = "generic"
|
|
build_path = /obj/machinery/computer/arcade/recruiter
|
|
origin_tech = "programming=1"
|
|
|
|
/obj/item/circuitboard/solar_control
|
|
board_name = "Solar Control"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/power/solar_control
|
|
origin_tech = "programming=2;powerstorage=2"
|
|
|
|
/obj/item/circuitboard/powermonitor
|
|
board_name = "Power Monitor"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/monitor
|
|
origin_tech = "programming=2;powerstorage=2"
|
|
|
|
/obj/item/circuitboard/powermonitor/secret
|
|
board_name = "Outdated Power Monitor"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/monitor/secret
|
|
origin_tech = "programming=2;powerstorage=2"
|
|
|
|
/obj/item/circuitboard/prisoner
|
|
board_name = "Prisoner Management"
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/prisoner
|
|
|
|
/obj/item/circuitboard/brigcells
|
|
board_name = "Brig Cell Control"
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/brigcells
|
|
|
|
/obj/item/circuitboard/sm_monitor
|
|
board_name = "Supermatter Monitoring Console"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/sm_monitor
|
|
origin_tech = "programming=2;powerstorage=2"
|
|
|
|
// RD console circuits, so that de/reconstructing one of the special consoles doesn't ruin everything forever
|
|
/obj/item/circuitboard/rdconsole
|
|
board_name = "RD Console"
|
|
desc = "Swipe a Scientist level ID or higher to reconfigure."
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/rdconsole/core
|
|
req_access = list(ACCESS_TOX) // This is for adjusting the type of computer we're building
|
|
var/list/access_types = list("R&D Core", "E.X.P.E.R.I-MENTOR", "Public")
|
|
|
|
/obj/item/circuitboard/rdconsole/experiment
|
|
board_name = "RD Console - E.X.P.E.R.I-MENTOR"
|
|
build_path = /obj/machinery/computer/rdconsole/experiment
|
|
|
|
/obj/item/circuitboard/rdconsole/public
|
|
board_name = "RD Console - Public"
|
|
build_path = /obj/machinery/computer/rdconsole/public
|
|
|
|
/obj/item/circuitboard/mecha_control
|
|
board_name = "Exosuit Control Console"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/mecha
|
|
|
|
/obj/item/circuitboard/rnd_network_controller
|
|
board_name = "R&D Network Controller"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/rnd_network_controller
|
|
|
|
/obj/item/circuitboard/rnd_backup_console
|
|
board_name = "R&D Backup Console"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/rnd_backup
|
|
|
|
/obj/item/circuitboard/crew
|
|
board_name = "Crew Monitoring Computer"
|
|
icon_state = "medical"
|
|
build_path = /obj/machinery/computer/crew
|
|
origin_tech = "programming=2;biotech=2"
|
|
|
|
/obj/item/circuitboard/mech_bay_power_console
|
|
board_name = "Mech Bay Power Control Console"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/mech_bay_power_console
|
|
origin_tech = "programming=3;powerstorage=3"
|
|
|
|
/obj/item/circuitboard/ordercomp
|
|
board_name = "Supply Ordering Console"
|
|
icon_state = "supply"
|
|
build_path = /obj/machinery/computer/supplycomp/public
|
|
origin_tech = "programming=3"
|
|
|
|
/obj/item/circuitboard/supplycomp
|
|
board_name = "Supply Shuttle Console"
|
|
icon_state = "supply"
|
|
build_path = /obj/machinery/computer/supplycomp
|
|
origin_tech = "programming=3"
|
|
var/contraband_enabled = 0
|
|
|
|
/obj/item/circuitboard/operating
|
|
board_name = "Operating Computer"
|
|
icon_state = "medical"
|
|
build_path = /obj/machinery/computer/operating
|
|
origin_tech = "programming=2;biotech=3"
|
|
|
|
/obj/item/circuitboard/shuttle
|
|
board_name = "Shuttle"
|
|
icon_state = "generic"
|
|
build_path = /obj/machinery/computer/shuttle
|
|
var/shuttleId
|
|
var/possible_destinations = ""
|
|
|
|
/obj/item/circuitboard/labor_shuttle
|
|
board_name = "Labor Shuttle"
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/shuttle/labor
|
|
|
|
/obj/item/circuitboard/labor_shuttle/one_way
|
|
board_name = "Prisoner Shuttle Console"
|
|
icon_state = "security"
|
|
build_path = /obj/machinery/computer/shuttle/labor/one_way
|
|
|
|
/obj/item/circuitboard/ferry
|
|
board_name = "Transport Ferry"
|
|
build_path = /obj/machinery/computer/shuttle/ferry
|
|
|
|
/obj/item/circuitboard/ferry/request
|
|
board_name = "Transport Ferry Console"
|
|
icon_state = "supply"
|
|
build_path = /obj/machinery/computer/shuttle/ferry/request
|
|
|
|
/obj/item/circuitboard/mining_shuttle
|
|
board_name = "Mining Shuttle"
|
|
icon_state = "supply"
|
|
build_path = /obj/machinery/computer/shuttle/mining
|
|
|
|
/obj/item/circuitboard/white_ship
|
|
board_name = "White Ship"
|
|
icon_state = "generic"
|
|
build_path = /obj/machinery/computer/shuttle/white_ship
|
|
|
|
/obj/item/circuitboard/shuttle/syndicate
|
|
board_name = "Syndicate Shuttle"
|
|
icon_state = "generic"
|
|
build_path = /obj/machinery/computer/shuttle/syndicate
|
|
|
|
/obj/item/circuitboard/shuttle/syndicate/recall
|
|
board_name = "Syndicate Shuttle Recall Terminal"
|
|
icon_state = "generic"
|
|
build_path = /obj/machinery/computer/shuttle/syndicate/recall
|
|
|
|
/obj/item/circuitboard/shuttle/syndicate/drop_pod
|
|
board_name = "Syndicate Drop Pod"
|
|
icon_state = "generic"
|
|
build_path = /obj/machinery/computer/shuttle/syndicate/drop_pod
|
|
|
|
/obj/item/circuitboard/shuttle/golem_ship
|
|
board_name = "Golem Ship"
|
|
icon_state = "generic"
|
|
build_path = /obj/machinery/computer/shuttle/golem_ship
|
|
|
|
/obj/item/circuitboard/HolodeckControl
|
|
board_name = "Holodeck Control"
|
|
icon_state = "generic"
|
|
build_path = /obj/machinery/computer/HolodeckControl
|
|
origin_tech = "programming=4"
|
|
|
|
/obj/item/circuitboard/aifixer
|
|
board_name = "AI Integrity Restorer"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/aifixer
|
|
origin_tech = "programming=2;biotech=2"
|
|
|
|
/obj/item/circuitboard/area_atmos
|
|
board_name = "Area Air Control"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/area_atmos
|
|
origin_tech = "programming=2"
|
|
|
|
/obj/item/circuitboard/telesci_console
|
|
board_name = "Telepad Control Console"
|
|
icon_state = "science"
|
|
build_path = /obj/machinery/computer/telescience
|
|
origin_tech = "programming=3;bluespace=3;plasmatech=4"
|
|
|
|
/obj/item/circuitboard/large_tank_control
|
|
board_name = "Atmospheric Tank Control"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/general_air_control/large_tank_control
|
|
origin_tech = "programming=2;engineering=3;materials=2"
|
|
|
|
/obj/item/circuitboard/turbine_computer
|
|
board_name = "Turbine Computer"
|
|
icon_state = "engineering"
|
|
build_path = /obj/machinery/computer/turbine_computer
|
|
origin_tech = "programming=4;engineering=4;powerstorage=4"
|
|
|
|
/obj/item/circuitboard/supplycomp/multitool_act(mob/living/user, obj/item/I)
|
|
. = TRUE
|
|
var/catastasis // Why is it called this
|
|
var/opposite_catastasis
|
|
if(contraband_enabled)
|
|
catastasis = "BROAD"
|
|
opposite_catastasis = "STANDARD"
|
|
else
|
|
catastasis = "STANDARD"
|
|
opposite_catastasis = "BROAD"
|
|
|
|
var/choice = tgui_alert(user, "Current receiver spectrum is set to: [catastasis]", "Multitool-Circuitboard interface", list("Switch to [opposite_catastasis]", "Cancel"))
|
|
if(!choice || choice == "Cancel")
|
|
return
|
|
|
|
contraband_enabled = !contraband_enabled
|
|
playsound(src, 'sound/effects/pop.ogg', 50)
|
|
|
|
/obj/item/circuitboard/rdconsole/attackby(obj/item/I, mob/user, params)
|
|
if(istype(I, /obj/item/card/id) || istype(I, /obj/item/pda))
|
|
if(allowed(user))
|
|
user.visible_message("<span class='notice'>[user] waves [user.p_their()] ID past [src]'s access protocol scanner.</span>", "<span class='notice'>You swipe your ID past [src]'s access protocol scanner.</span>")
|
|
var/console_choice = tgui_input_list(user, "What do you want to configure the access to?", "Access Modification", access_types)
|
|
if(!console_choice)
|
|
return
|
|
switch(console_choice)
|
|
if("R&D Core")
|
|
board_name = "RD Console"
|
|
build_path = /obj/machinery/computer/rdconsole/core
|
|
if("E.X.P.E.R.I-MENTOR")
|
|
board_name = "RD Console - E.X.P.E.R.I-MENTOR"
|
|
build_path = /obj/machinery/computer/rdconsole/experiment
|
|
if("Public")
|
|
board_name = "RD Console - Public"
|
|
build_path = /obj/machinery/computer/rdconsole/public
|
|
|
|
format_board_name()
|
|
to_chat(user, "<span class='notice'>Access protocols set to [console_choice].</span>")
|
|
else
|
|
to_chat(user, "<span class='warning'>Access Denied.</span>")
|
|
return
|
|
return ..()
|
|
|
|
// Construction | Deconstruction
|
|
#define STATE_EMPTY 1 // Add a circuitboard | Weld to destroy
|
|
#define STATE_CIRCUIT 2 // Screwdriver the cover closed | Crowbar the circuit
|
|
#define STATE_NOWIRES 3 // Add wires | Screwdriver the cover open
|
|
#define STATE_WIRES 4 // Add glass | Remove wires
|
|
#define STATE_GLASS 5 // Screwdriver to complete | Crowbar glass out
|
|
|
|
/obj/structure/computerframe
|
|
name = "computer frame"
|
|
icon = 'icons/obj/stock_parts.dmi'
|
|
icon_state = "comp_frame_1"
|
|
density = TRUE
|
|
anchored = TRUE
|
|
max_integrity = 100
|
|
var/state = STATE_EMPTY
|
|
var/obj/item/circuitboard/circuit = null
|
|
|
|
/obj/structure/computerframe/examine(mob/user)
|
|
. = ..()
|
|
. += "<span class='notice'>It is <b>[anchored ? "bolted to the floor" : "unbolted"]</b>.</span>"
|
|
switch(state)
|
|
if(STATE_EMPTY)
|
|
. += "<span class='notice'>The frame is <b>welded together</b>, but it is missing a <i>circuit board</i>.</span>"
|
|
if(STATE_CIRCUIT)
|
|
. += "<span class='notice'>A circuit board is <b>firmly connected</b>, but the cover is <i>unscrewed and open</i>.</span>"
|
|
if(STATE_NOWIRES)
|
|
. += "<span class='notice'>The cover is <b>screwed shut</b>, but the frame is missing <i>wiring</i>.</span>"
|
|
if(STATE_WIRES)
|
|
. += "<span class='notice'>The frame is <b>wired</b>, but the <i>glass</i> is missing.</span>"
|
|
if(STATE_GLASS)
|
|
. += "<span class='notice'>The glass is <b>loosely connected</b> and needs to be <i>screwed into place</i>.</span>"
|
|
if(!anchored)
|
|
. += "<span class='notice'>Alt-Click to rotate it.</span>"
|
|
|
|
/obj/structure/computerframe/deconstruct(disassembled = TRUE)
|
|
if(!(flags & NODECONSTRUCT))
|
|
drop_computer_parts()
|
|
return ..() // will qdel the frame
|
|
|
|
/obj/structure/computerframe/AltClick(mob/user)
|
|
if(user.incapacitated())
|
|
to_chat(user, "<span class='warning'>You can't do that right now!</span>")
|
|
return
|
|
if(!Adjacent(user))
|
|
return
|
|
if(anchored)
|
|
to_chat(user, "<span class='warning'>The frame is anchored to the floor!</span>")
|
|
return
|
|
setDir(turn(dir, 90))
|
|
|
|
/obj/structure/computerframe/obj_break(damage_flag)
|
|
deconstruct()
|
|
|
|
/obj/structure/computerframe/proc/drop_computer_parts()
|
|
var/location = drop_location()
|
|
new /obj/item/stack/sheet/metal(location, 5)
|
|
if(circuit)
|
|
circuit.forceMove(location)
|
|
circuit = null
|
|
if(state >= STATE_WIRES)
|
|
var/obj/item/stack/cable_coil/C = new(location)
|
|
C.amount = 5
|
|
if(state == STATE_GLASS)
|
|
new /obj/item/stack/sheet/glass(location, 2)
|
|
|
|
/obj/structure/computerframe/update_icon_state()
|
|
icon_state = "comp_frame_[state]"
|
|
|
|
/obj/structure/computerframe/welder_act(mob/user, obj/item/I)
|
|
if(state != STATE_EMPTY)
|
|
return
|
|
. = TRUE
|
|
if(!I.tool_use_check(user, 0))
|
|
return
|
|
WELDER_ATTEMPT_SLICING_MESSAGE
|
|
if(I.use_tool(src, user, 50, volume = I.tool_volume))
|
|
WELDER_SLICING_SUCCESS_MESSAGE
|
|
deconstruct(TRUE)
|
|
|
|
/obj/structure/computerframe/wrench_act(mob/living/user, obj/item/I)
|
|
. = TRUE
|
|
default_unfasten_wrench(user, I, 2 SECONDS)
|
|
|
|
/obj/structure/computerframe/crowbar_act(mob/living/user, obj/item/I)
|
|
. = TRUE
|
|
if(!I.use_tool(src, user))
|
|
return
|
|
|
|
if(state == STATE_CIRCUIT)
|
|
to_chat(user, "<span class='notice'>You remove the circuit board.</span>")
|
|
state = STATE_EMPTY
|
|
name = initial(name)
|
|
circuit.forceMove(drop_location())
|
|
circuit = null
|
|
else if(state == STATE_GLASS)
|
|
to_chat(user, "<span class='notice'>You remove the glass panel.</span>")
|
|
state = STATE_WIRES
|
|
new /obj/item/stack/sheet/glass(drop_location(), 2)
|
|
else
|
|
return
|
|
|
|
I.play_tool_sound(src)
|
|
update_icon()
|
|
|
|
/obj/structure/computerframe/screwdriver_act(mob/living/user, obj/item/I)
|
|
. = TRUE
|
|
if(!I.use_tool(src, user))
|
|
return
|
|
|
|
switch(state)
|
|
if(STATE_CIRCUIT)
|
|
to_chat(user, "<span class='notice'>You screw the circuit board into place.</span>")
|
|
state = STATE_NOWIRES
|
|
I.play_tool_sound(src)
|
|
update_icon()
|
|
if(STATE_NOWIRES)
|
|
to_chat(user, "<span class='notice'>You unfasten the circuit board.</span>")
|
|
state = STATE_CIRCUIT
|
|
I.play_tool_sound(src)
|
|
update_icon()
|
|
if(STATE_GLASS)
|
|
to_chat(user, "<span class='notice'>You connect the monitor.</span>")
|
|
I.play_tool_sound(src)
|
|
var/obj/machinery/computer/B = new circuit.build_path(loc)
|
|
B.setDir(dir)
|
|
if(istype(circuit, /obj/item/circuitboard/supplycomp))
|
|
var/obj/machinery/computer/supplycomp/SC = B
|
|
var/obj/item/circuitboard/supplycomp/C = circuit
|
|
SC.can_order_contraband = C.contraband_enabled
|
|
qdel(src)
|
|
|
|
/obj/structure/computerframe/wirecutter_act(mob/living/user, obj/item/I)
|
|
. = TRUE
|
|
if(!I.use_tool(src, user))
|
|
return
|
|
|
|
if(state == STATE_WIRES)
|
|
to_chat(user, "<span class='notice'>You remove the cables.</span>")
|
|
var/obj/item/stack/cable_coil/C = new(drop_location())
|
|
C.amount = 5
|
|
state = STATE_NOWIRES
|
|
I.play_tool_sound(src)
|
|
update_icon()
|
|
|
|
/obj/structure/computerframe/attackby(obj/item/I, mob/user, params)
|
|
switch(state)
|
|
if(STATE_EMPTY)
|
|
if(!istype(I, /obj/item/circuitboard))
|
|
return ..()
|
|
|
|
var/obj/item/circuitboard/B = I
|
|
if(B.board_type != "computer")
|
|
to_chat(user, "<span class='warning'>[src] does not accept circuit boards of this type!</span>")
|
|
return
|
|
|
|
if(!B.build_path)
|
|
to_chat(user, "<span class='warning'>This is not a functional computer circuit board!</span>")
|
|
return
|
|
|
|
B.play_tool_sound(src)
|
|
to_chat(user, "<span class='notice'>You place [B] inside [src].</span>")
|
|
name += " ([B.board_name])"
|
|
state = STATE_CIRCUIT
|
|
user.drop_item()
|
|
B.forceMove(src)
|
|
circuit = B
|
|
update_icon()
|
|
return
|
|
|
|
if(STATE_NOWIRES)
|
|
if(!istype(I, /obj/item/stack/cable_coil))
|
|
return ..()
|
|
|
|
var/obj/item/stack/cable_coil/C = I
|
|
if(C.get_amount() < 5)
|
|
to_chat(user, "<span class='warning'>You need five lengths of cable to wire the frame.</span>")
|
|
return
|
|
|
|
C.play_tool_sound(src)
|
|
to_chat(user, "<span class='notice'>You start to add cables to the frame.</span>")
|
|
if(!do_after(user, 2 SECONDS * C.toolspeed, target = src))
|
|
return
|
|
if(C.get_amount() < 5 || !C.use(5))
|
|
to_chat(user, "<span class='warning'>At some point during construction you lost some cable. Make sure you have five lengths before trying again.</span>")
|
|
return
|
|
|
|
to_chat(user, "<span class='notice'>You add cables to the frame.</span>")
|
|
state = STATE_WIRES
|
|
update_icon()
|
|
return
|
|
|
|
if(STATE_WIRES)
|
|
if(!istype(I, /obj/item/stack/sheet/glass))
|
|
return ..()
|
|
|
|
var/obj/item/stack/sheet/glass/G = I
|
|
if(G.get_amount() < 2)
|
|
to_chat(user, "<span class='warning'>You need two sheets of glass for this.</span>")
|
|
return
|
|
|
|
G.play_tool_sound(src)
|
|
to_chat(user, "<span class='notice'>You start to add the glass panel to the frame.</span>")
|
|
if(!do_after(user, 2 SECONDS * G.toolspeed, target = src))
|
|
return
|
|
if(G.get_amount() < 2 || !G.use(2))
|
|
to_chat(user, "<span class='warning'>At some point during construction you lost some glass. Make sure you have two sheets before trying again.</span>")
|
|
return
|
|
|
|
to_chat(user, "<span class='notice'>You put in the glass panel.</span>")
|
|
state = STATE_GLASS
|
|
update_icon()
|
|
return
|
|
|
|
return ..()
|
|
|
|
#undef STATE_EMPTY
|
|
#undef STATE_CIRCUIT
|
|
#undef STATE_NOWIRES
|
|
#undef STATE_WIRES
|
|
#undef STATE_GLASS
|