mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* c++ monstermos
fuck
Fixes the server hemorrhaging memory due to extools not decrementing ref counts
Increases defauilt tank pressure
make space cold or some shit
floor tile rips
Fixes code assuming that the heat capacity is nonzero
🤦
Fixes crash
fixes some bugs
fuck *facepalm*
the fastening
removes Del() in favor of an internal c++ hook
Fixes vent-pump math
* Fix the invisible gases bug
* Linux support
* fix the deploy.sh
* Uses newer BYOND 513 because older one is probably missing an important pattern (it segfaulted on pattern search)
* Updates windows dll to match linux version and cleans up unused BYOND code
77 lines
2.4 KiB
Plaintext
77 lines
2.4 KiB
Plaintext
/obj/machinery/atmospherics/components/unary/heat_exchanger
|
|
|
|
icon_state = "he1"
|
|
|
|
name = "heat exchanger"
|
|
desc = "Exchanges heat between two input gases. Set up for fast heat transfer."
|
|
|
|
can_unwrench = TRUE
|
|
shift_underlay_only = FALSE // not really used
|
|
|
|
layer = LOW_OBJ_LAYER
|
|
|
|
var/obj/machinery/atmospherics/components/unary/heat_exchanger/partner = null
|
|
var/update_cycle
|
|
|
|
pipe_state = "heunary"
|
|
|
|
/obj/machinery/atmospherics/components/unary/heat_exchanger/layer1
|
|
piping_layer = 1
|
|
icon_state = "he_map-1"
|
|
|
|
/obj/machinery/atmospherics/components/unary/heat_exchanger/layer3
|
|
piping_layer = 3
|
|
icon_state = "he_map-3"
|
|
|
|
/obj/machinery/atmospherics/components/unary/heat_exchanger/update_icon()
|
|
if(nodes[1])
|
|
icon_state = "he1"
|
|
var/obj/machinery/atmospherics/node = nodes[1]
|
|
add_atom_colour(node.color, FIXED_COLOUR_PRIORITY)
|
|
else
|
|
icon_state = "he0"
|
|
PIPING_LAYER_SHIFT(src, piping_layer)
|
|
|
|
/obj/machinery/atmospherics/components/unary/heat_exchanger/atmosinit()
|
|
if(!partner)
|
|
var/partner_connect = turn(dir,180)
|
|
|
|
for(var/obj/machinery/atmospherics/components/unary/heat_exchanger/target in get_step(src,partner_connect))
|
|
if(target.dir & get_dir(src,target))
|
|
partner = target
|
|
partner.partner = src
|
|
break
|
|
|
|
..()
|
|
|
|
/obj/machinery/atmospherics/components/unary/heat_exchanger/process_atmos()
|
|
..()
|
|
if(!partner || SSair.times_fired <= update_cycle)
|
|
return
|
|
|
|
update_cycle = SSair.times_fired
|
|
partner.update_cycle = SSair.times_fired
|
|
|
|
var/datum/gas_mixture/air_contents = airs[1]
|
|
var/datum/gas_mixture/partner_air_contents = partner.airs[1]
|
|
|
|
var/air_heat_capacity = air_contents.heat_capacity()
|
|
var/other_air_heat_capacity = partner_air_contents.heat_capacity()
|
|
var/combined_heat_capacity = other_air_heat_capacity + air_heat_capacity
|
|
|
|
var/old_temperature = air_contents.return_temperature()
|
|
var/other_old_temperature = partner_air_contents.return_temperature()
|
|
|
|
if(combined_heat_capacity > 0)
|
|
var/combined_energy = partner_air_contents.return_temperature()*other_air_heat_capacity + air_heat_capacity*air_contents.return_temperature()
|
|
|
|
var/new_temperature = combined_energy/combined_heat_capacity
|
|
air_contents.set_temperature(new_temperature)
|
|
partner_air_contents.set_temperature(new_temperature)
|
|
|
|
if(abs(old_temperature-air_contents.return_temperature()) > 1)
|
|
update_parents()
|
|
|
|
if(abs(other_old_temperature-partner_air_contents.return_temperature()) > 1)
|
|
partner.update_parents()
|