mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-13 18:33:22 +00:00
41 lines
1.9 KiB
Plaintext
41 lines
1.9 KiB
Plaintext
/*
|
|
PIPE CONSTRUCTION DEFINES
|
|
Update these any time a path is changed
|
|
Construction breaks otherwise
|
|
*/
|
|
|
|
//Pipes
|
|
#define PIPE_SIMPLE /obj/machinery/atmospherics/pipe/simple
|
|
#define PIPE_MANIFOLD /obj/machinery/atmospherics/pipe/manifold
|
|
#define PIPE_4WAYMANIFOLD /obj/machinery/atmospherics/pipe/manifold4w
|
|
#define PIPE_HE /obj/machinery/atmospherics/pipe/heat_exchanging/simple
|
|
#define PIPE_HE_MANIFOLD /obj/machinery/atmospherics/pipe/heat_exchanging/manifold
|
|
#define PIPE_HE_4WAYMANIFOLD /obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w
|
|
#define PIPE_JUNCTION /obj/machinery/atmospherics/pipe/heat_exchanging/junction
|
|
//Unary
|
|
#define PIPE_CONNECTOR /obj/machinery/atmospherics/components/unary/portables_connector
|
|
#define PIPE_UVENT /obj/machinery/atmospherics/components/unary/vent_pump
|
|
#define PIPE_SCRUBBER /obj/machinery/atmospherics/components/unary/vent_scrubber
|
|
#define PIPE_HEAT_EXCHANGE /obj/machinery/atmospherics/components/unary/heat_exchanger
|
|
//Binary
|
|
#define PIPE_PUMP /obj/machinery/atmospherics/components/binary/pump
|
|
#define PIPE_PASSIVE_GATE /obj/machinery/atmospherics/components/binary/passive_gate
|
|
#define PIPE_VOLUME_PUMP /obj/machinery/atmospherics/components/binary/volume_pump
|
|
#define PIPE_MVALVE /obj/machinery/atmospherics/components/binary/valve
|
|
#define PIPE_DVALVE /obj/machinery/atmospherics/components/binary/valve/digital
|
|
//Trinary
|
|
#define PIPE_GAS_FILTER /obj/machinery/atmospherics/components/trinary/filter
|
|
#define PIPE_GAS_MIXER /obj/machinery/atmospherics/components/trinary/mixer
|
|
|
|
//Disposal piping numbers - do NOT hardcode these, use the defines
|
|
#define DISP_PIPE_STRAIGHT 0
|
|
#define DISP_PIPE_BENT 1
|
|
#define DISP_JUNCTION 2
|
|
#define DISP_JUNCTION_FLIP 3
|
|
#define DISP_YJUNCTION 4
|
|
#define DISP_END_TRUNK 5
|
|
#define DISP_END_BIN 6
|
|
#define DISP_END_OUTLET 7
|
|
#define DISP_END_CHUTE 8
|
|
#define DISP_SORTJUNCTION 9
|
|
#define DISP_SORTJUNCTION_FLIP 10 |