mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 08:37:43 +01:00
Fixes all the failing grep checks in #3157, doesn't fix the define sanity fails because im tired 
281 lines
7.8 KiB
Plaintext
281 lines
7.8 KiB
Plaintext
//node2, air2, network2 correspond to input
|
|
//node1, air1, network1 correspond to output
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator
|
|
name = "circulator"
|
|
desc = "A gas circulating turbine and heat exchanger."
|
|
icon = 'modular_skyrat/master_files/icons/obj/machines/thermoelectric.dmi'
|
|
icon_state = "circ-unassembled-0"
|
|
density = TRUE
|
|
integrity_failure = 0.375
|
|
move_resist = MOVE_RESIST_DEFAULT //can be pushed around like a regular machine
|
|
|
|
var/active = FALSE
|
|
|
|
var/last_pressure_delta = 0
|
|
pipe_flags = PIPING_ONE_PER_TURF | PIPING_DEFAULT_LAYER_ONLY
|
|
|
|
var/flipped = 0
|
|
var/mode = CIRCULATOR_HOT
|
|
var/obj/machinery/power/thermoelectric_generator/generator
|
|
|
|
//for mappers
|
|
/obj/machinery/atmospherics/components/binary/circulator/cold
|
|
mode = CIRCULATOR_COLD
|
|
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/flipped
|
|
flipped = 1
|
|
icon_state = "circ-unassembled-1"
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/cold/flipped
|
|
mode = CIRCULATOR_COLD
|
|
flipped = 1
|
|
icon_state = "circ-unassembled-1"
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/Initialize(mapload)
|
|
.=..()
|
|
component_parts = list(new /obj/item/circuitboard/machine/circulator)
|
|
update_appearance()
|
|
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/Destroy()
|
|
if(generator)
|
|
disconnectFromGenerator()
|
|
return ..()
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/proc/return_transfer_air()
|
|
|
|
var/datum/gas_mixture/air1 = airs[1]
|
|
var/datum/gas_mixture/air2 = airs[2]
|
|
|
|
var/output_starting_pressure = air1.return_pressure()
|
|
var/input_starting_pressure = air2.return_pressure()
|
|
|
|
if(output_starting_pressure >= input_starting_pressure-10)
|
|
//Need at least 10 KPa difference to overcome friction in the mechanism
|
|
last_pressure_delta = 0
|
|
return null
|
|
|
|
//Calculate necessary moles to transfer using PV = nRT
|
|
if(air2.temperature <= 0)
|
|
last_pressure_delta = 0
|
|
return
|
|
var/pressure_delta = (input_starting_pressure - output_starting_pressure)/2
|
|
var/transfer_moles = (pressure_delta*air1.volume)/(air2.temperature * R_IDEAL_GAS_EQUATION)
|
|
last_pressure_delta = pressure_delta
|
|
//Actually transfer the gas
|
|
var/datum/gas_mixture/removed = air2.remove(transfer_moles)
|
|
update_parents()
|
|
return removed
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/process_atmos()
|
|
..()
|
|
update_icon_nopipes()
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/update_appearance()
|
|
cut_overlays()
|
|
|
|
if(anchored)
|
|
for(var/direction in GLOB.cardinals)
|
|
if(!(direction & initialize_directions))
|
|
continue
|
|
var/obj/machinery/atmospherics/node = find_connecting(direction)
|
|
|
|
var/image/cap
|
|
if(node)
|
|
cap = get_pipe_image(icon, "cap", direction, node.pipe_color, piping_layer = piping_layer)
|
|
|
|
add_overlay(cap)
|
|
|
|
return ..()
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/update_icon_nopipes()
|
|
cut_overlays()
|
|
SSvis_overlays.remove_vis_overlay(src, managed_vis_overlays)
|
|
|
|
if(machine_stat & (BROKEN))
|
|
icon_state = "circ-broken"
|
|
set_light(0)
|
|
return
|
|
|
|
if(!generator)
|
|
icon_state = "circ-unassembled-[flipped]"
|
|
if(panel_open)
|
|
add_overlay("circ-panel")
|
|
set_light(0)
|
|
return
|
|
if(!generator.anchored)
|
|
icon_state = "circ-unassembled-[flipped]"
|
|
if(panel_open)
|
|
add_overlay("circ-panel")
|
|
set_light(0)
|
|
return
|
|
|
|
icon_state = "circ-assembled-[flipped]"
|
|
|
|
if(!is_operational)
|
|
set_light(0)
|
|
return
|
|
else
|
|
if(!last_pressure_delta)
|
|
set_light(1)
|
|
SSvis_overlays.add_vis_overlay(src, icon, "circ-off", LIGHTING_ABOVE_ALL, ABOVE_LIGHTING_PLANE, dir)
|
|
return
|
|
else
|
|
if(last_pressure_delta > ONE_ATMOSPHERE) //fast
|
|
if(mode)
|
|
set_light(3,2,"#4F82FF")
|
|
else
|
|
set_light(3,2,"#FF3232")
|
|
SSvis_overlays.add_vis_overlay(src, icon, "circ-ex[mode?"cold":"hot"]", LIGHTING_ABOVE_ALL, ABOVE_LIGHTING_PLANE, dir)
|
|
SSvis_overlays.add_vis_overlay(src, icon, "circ-run", ABOVE_LIGHTING_PLANE, ABOVE_LIGHTING_PLANE, dir)
|
|
else //slow
|
|
if(mode)
|
|
set_light(2,1,"#4F82FF")
|
|
else
|
|
set_light(2,1,"#FF3232")
|
|
SSvis_overlays.add_vis_overlay(src, icon, "circ-[mode?"cold":"hot"]", LIGHTING_ABOVE_ALL, ABOVE_LIGHTING_PLANE, dir)
|
|
SSvis_overlays.add_vis_overlay(src, icon, "circ-slow", LIGHTING_ABOVE_ALL, ABOVE_LIGHTING_PLANE, dir)
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/wrench_act(mob/living/user, obj/item/I)
|
|
|
|
if(!panel_open)
|
|
balloon_alert(user, "open the panel first!")
|
|
return TRUE
|
|
|
|
if(generator)
|
|
balloon_alert(user, "disconnect [generator] first!")
|
|
return TRUE
|
|
|
|
set_anchored(!anchored)
|
|
I.play_tool_sound(src)
|
|
balloon_alert(user, "you [anchored?"secure":"unsecure"] [src].")
|
|
|
|
var/obj/machinery/atmospherics/node1 = nodes[1]
|
|
var/obj/machinery/atmospherics/node2 = nodes[2]
|
|
|
|
if(node1)
|
|
node1.disconnect(src)
|
|
nodes[1] = null
|
|
if(parents[1])
|
|
nullify_pipenet(parents[1])
|
|
|
|
if(node2)
|
|
node2.disconnect(src)
|
|
nodes[2] = null
|
|
if(parents[2])
|
|
nullify_pipenet(parents[2])
|
|
|
|
if(anchored)
|
|
set_init_directions()
|
|
atmos_init()
|
|
node1 = nodes[1]
|
|
if(node1)
|
|
node1.atmos_init()
|
|
node1.add_member(src)
|
|
node2 = nodes[2]
|
|
if(node2)
|
|
node2.atmos_init()
|
|
node2.add_member(src)
|
|
SSair.add_to_rebuild_queue(src)
|
|
|
|
update_appearance()
|
|
return TRUE
|
|
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/set_init_directions()
|
|
switch(dir)
|
|
if(NORTH, SOUTH)
|
|
initialize_directions = EAST|WEST
|
|
if(EAST, WEST)
|
|
initialize_directions = NORTH|SOUTH
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/get_node_connects()
|
|
if(flipped)
|
|
return list(turn(dir, 270), turn(dir, 90))
|
|
return list(turn(dir, 90), turn(dir, 270))
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/can_be_node(obj/machinery/atmospherics/target)
|
|
if(anchored)
|
|
return ..(target)
|
|
return FALSE
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/multitool_act(mob/living/user, obj/item/I)
|
|
if(generator)
|
|
balloon_alert(user, "disconnect [generator] first!")
|
|
return TRUE
|
|
|
|
mode = !mode
|
|
balloon_alert(user, "you set [src] to [mode?"cold":"hot"] mode.")
|
|
return TRUE
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/screwdriver_act(mob/user, obj/item/I)
|
|
if(..())
|
|
return TRUE
|
|
if(generator)
|
|
balloon_alert(user, "disconnect the generator first!")
|
|
return TRUE
|
|
panel_open = !panel_open
|
|
I.play_tool_sound(src)
|
|
balloon_alert(user, "you [panel_open?"open":"close"] the panel on [src].")
|
|
update_icon_nopipes()
|
|
return TRUE
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/wrench_act_secondary(mob/living/user, obj/item/tool)
|
|
return default_change_direction_wrench(user, tool)
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/default_change_direction_wrench(mob/user, obj/item/I)
|
|
if(!..())
|
|
return FALSE
|
|
set_init_directions()
|
|
update_appearance()
|
|
return TRUE
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/crowbar_act(mob/user, obj/item/I)
|
|
if(anchored)
|
|
balloon_alert(user, "[src] is anchored!")
|
|
return TRUE
|
|
if(!panel_open)
|
|
circulator_flip()
|
|
return TRUE
|
|
else
|
|
default_deconstruction_crowbar(I)
|
|
return TRUE
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/on_deconstruction()
|
|
if(generator)
|
|
disconnectFromGenerator()
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/proc/disconnectFromGenerator()
|
|
if(mode)
|
|
generator.cold_circ = null
|
|
else
|
|
generator.hot_circ = null
|
|
generator.update_appearance()
|
|
generator = null
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/set_piping_layer(new_layer)
|
|
..()
|
|
pixel_x = 0
|
|
pixel_y = 0
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/verb/circulator_flip()
|
|
set name = "Flip"
|
|
set category = "Object"
|
|
set src in oview(1)
|
|
|
|
if(!ishuman(usr))
|
|
return
|
|
flipped = !flipped
|
|
balloon_alert(usr, "you flip [src].")
|
|
playsound(src, 'sound/items/tools/change_drill.ogg', 50)
|
|
update_icon_nopipes()
|
|
|
|
/obj/machinery/atmospherics/components/binary/circulator/atom_break(damage_flag)
|
|
if(generator)
|
|
generator.null_circulators()
|
|
generator.update_appearance()
|
|
..()
|
|
|