mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-17 13:51:44 +00:00
* this will work first try (adds water vapor and the electrolyzer) * naming fix * removes a warn * makes water vapor able to be seen and adds it to the tiny_test atmos map * Build Rust library * adds the electrolyzer to all maps, and linter fix * linter fix part 2 * electrolyzer tweak and more work on the test_atmos map * tgui rebuilding * re rebuilding tgui * makes the electrolyzer consume power and some small test atmos touch ups * im axing the test_tiny because i don't want to map it * clarifies how much power the electrolyzer uses * Build Rust library * suggestionss Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: JimKil3 <47290811+JimKil3@users.noreply.github.com> Signed-off-by: Hayden Redacted <91229275+haydenredacted@users.noreply.github.com> * updating the SM manual * electrolyzer tweaks * dg suggestions pt. 2 Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Hayden Redacted <91229275+haydenredacted@users.noreply.github.com> * removed unused code --------- Signed-off-by: Hayden Redacted <91229275+haydenredacted@users.noreply.github.com> Co-authored-by: paradisess13[bot] <165046124+paradisess13[bot]@users.noreply.github.com> Co-authored-by: warriorstar-orion <orion@snowfrost.garden> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: JimKil3 <47290811+JimKil3@users.noreply.github.com>
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
//Helper Modules
|
|
|
|
|
|
// Helper to repressurize the area in case it was run in space
|
|
/datum/map_generator_module/bottom_layer/repressurize
|
|
spawnableAtoms = list()
|
|
spawnableTurfs = list()
|
|
|
|
/datum/map_generator_module/bottom_layer/repressurize/generate()
|
|
if(!mother)
|
|
return
|
|
var/list/map = mother.map
|
|
for(var/turf/simulated/T in map)
|
|
var/datum/gas_mixture/air = new()
|
|
air.set_oxygen(T.oxygen)
|
|
air.set_nitrogen(T.nitrogen)
|
|
air.set_carbon_dioxide(T.carbon_dioxide)
|
|
air.set_toxins(T.toxins)
|
|
air.set_sleeping_agent(T.sleeping_agent)
|
|
air.set_agent_b(T.agent_b)
|
|
air.set_hydrogen(T.hydrogen)
|
|
air.set_water_vapor(T.water_vapor)
|
|
air.set_temperature(T.temperature)
|
|
T.blind_set_air(air)
|
|
|
|
//Only places atoms/turfs on area borders
|
|
/datum/map_generator_module/border
|
|
clusterCheckFlags = MAP_GENERATOR_CLUSTER_CHECK_NONE
|
|
|
|
/datum/map_generator_module/border/generate()
|
|
if(!mother)
|
|
return
|
|
var/list/map = mother.map
|
|
for(var/turf/T in map)
|
|
if(is_border(T))
|
|
place(T)
|
|
|
|
/datum/map_generator_module/border/proc/is_border(turf/T)
|
|
for(var/direction in list(SOUTH,EAST,WEST,NORTH))
|
|
if(get_step(T,direction) in mother.map)
|
|
continue
|
|
return 1
|
|
return 0
|