mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-12 18:03:13 +00:00
* Save 2.2s minimum (with zero ruins, likely a good bit more in production) of atom init time (#69564) Pre-sort smoothing_groups and canSmoothWith Without any ruins, these sorts were taking more than 0.6s, and the bulk of the runtime cost of sortTim during init time. This only happens on init and they are never changed apart from that, so pre-sorts everything and adds a unit test (in the form of #ifdef UNIT_TESTS, because you can't initial a list) to ensure that they are proper. Keep visibilityChanged() to mapload only for turf/Initialize Saves about 0.4s worst case scenario (e.g. with no ruins). Very expensive code (175k loop iterations) for 0 side effects. Space areas now have the fullbright overlay, not the space turfs Saves about 0.8s worst case scenario. Seems to work fine with starlight. Remove is_station_level check for window spawners assigning RCD memory. Saves about 0.3s worst case scenario. The logic for this isn't consistent since neither walls nor floors check this (for performance), plus some minor micro-opts to spawners. Optimize is_station_level Doubles in speed, used heavily in /turf/open/floor and in other initialization procs. Bit hard to tell exactly how much is saved, though. * Save 2.2s minimum (with zero ruins, likely a good bit more in production) of atom init time * Hopefully fixes the broken CI * Okay now it shouldn't be failing CI anymore (hopefully) * Fixes even more issues with smoothing_groups, this time hopefully for good * Okay NOW it's going to pass CI, surely... * Okay haha what if it passes this time? :) Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: GoldenAlpharex <jerego1234@hotmail.com> Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com>
183 lines
6.2 KiB
Plaintext
183 lines
6.2 KiB
Plaintext
/// Used as a parent type for types that want to allow construction, but do not want to be floors
|
|
/// I wish I could use components for turfs at scale
|
|
/// Please do not bloat this. Love you <3
|
|
/turf/open/misc
|
|
name = "coder/mapper fucked up"
|
|
desc = "report on github please"
|
|
icon_state = "BROKEN"
|
|
|
|
flags_1 = NO_SCREENTIPS_1
|
|
turf_flags = CAN_BE_DIRTY_1 | IS_SOLID | NO_RUST
|
|
|
|
footstep = FOOTSTEP_FLOOR
|
|
barefootstep = FOOTSTEP_HARD_BAREFOOT
|
|
clawfootstep = FOOTSTEP_HARD_CLAW
|
|
heavyfootstep = FOOTSTEP_GENERIC_HEAVY
|
|
|
|
underfloor_accessibility = UNDERFLOOR_INTERACTABLE
|
|
smoothing_groups = list(SMOOTH_GROUP_TURF_OPEN)
|
|
canSmoothWith = list(SMOOTH_GROUP_TURF_OPEN, SMOOTH_GROUP_OPEN_FLOOR)
|
|
|
|
thermal_conductivity = 0.04
|
|
heat_capacity = 10000
|
|
tiled_dirt = TRUE
|
|
|
|
/turf/open/misc/attackby(obj/item/W, mob/user, params)
|
|
. = ..()
|
|
if(.)
|
|
return TRUE
|
|
|
|
if(istype(W, /obj/item/stack/rods))
|
|
build_with_rods(W, user)
|
|
return TRUE
|
|
else if(istype(W, /obj/item/stack/tile/iron))
|
|
build_with_floor_tiles(W, user)
|
|
return TRUE
|
|
|
|
/turf/open/misc/attack_paw(mob/user, list/modifiers)
|
|
return attack_hand(user, modifiers)
|
|
|
|
/turf/open/misc/ex_act(severity, target)
|
|
. = ..()
|
|
|
|
if(target == src)
|
|
ScrapeAway(flags = CHANGETURF_INHERIT_AIR)
|
|
return TRUE
|
|
if(severity < EXPLODE_DEVASTATE && is_shielded())
|
|
return FALSE
|
|
|
|
if(target)
|
|
severity = EXPLODE_LIGHT
|
|
|
|
switch(severity)
|
|
if(EXPLODE_DEVASTATE)
|
|
ScrapeAway(2, flags = CHANGETURF_INHERIT_AIR)
|
|
if(EXPLODE_HEAVY)
|
|
switch(rand(1, 3))
|
|
if(1 to 2)
|
|
ScrapeAway(2, flags = CHANGETURF_INHERIT_AIR)
|
|
if(3)
|
|
if(prob(80))
|
|
ScrapeAway(flags = CHANGETURF_INHERIT_AIR)
|
|
else
|
|
break_tile()
|
|
hotspot_expose(1000,CELL_VOLUME)
|
|
if(EXPLODE_LIGHT)
|
|
if (prob(50))
|
|
break_tile()
|
|
hotspot_expose(1000,CELL_VOLUME)
|
|
|
|
|
|
/turf/open/misc/is_shielded()
|
|
for(var/obj/structure/A in contents)
|
|
return TRUE
|
|
|
|
/turf/open/misc/blob_act(obj/structure/blob/B)
|
|
return
|
|
|
|
/turf/open/misc/rcd_vals(mob/user, obj/item/construction/rcd/the_rcd)
|
|
switch(the_rcd.mode)
|
|
if(RCD_FLOORWALL)
|
|
var/obj/structure/lattice/L = locate(/obj/structure/lattice, src)
|
|
if(L)
|
|
return list("mode" = RCD_FLOORWALL, "delay" = 0, "cost" = 1)
|
|
else
|
|
return list("mode" = RCD_FLOORWALL, "delay" = 0, "cost" = 3)
|
|
|
|
if(RCD_AIRLOCK)
|
|
if(the_rcd.airlock_glass)
|
|
return list("mode" = RCD_AIRLOCK, "delay" = 50, "cost" = 20)
|
|
else
|
|
return list("mode" = RCD_AIRLOCK, "delay" = 50, "cost" = 16)
|
|
if(RCD_WINDOWGRILLE)
|
|
return rcd_result_with_memory(
|
|
list("mode" = RCD_WINDOWGRILLE, "delay" = 2 SECONDS, "cost" = 6),
|
|
src, RCD_MEMORY_WINDOWGRILLE,
|
|
)
|
|
if(RCD_MACHINE)
|
|
return list("mode" = RCD_MACHINE, "delay" = 2 SECONDS, "cost" = 25)
|
|
if(RCD_COMPUTER)
|
|
return list("mode" = RCD_COMPUTER, "delay" = 2 SECONDS, "cost" = 25)
|
|
if(RCD_FURNISHING)
|
|
return list("mode" = RCD_FURNISHING, "delay" = the_rcd.furnish_delay, "cost" = the_rcd.furnish_cost)
|
|
return FALSE
|
|
|
|
/turf/open/misc/rcd_act(mob/user, obj/item/construction/rcd/the_rcd, passed_mode)
|
|
switch(passed_mode)
|
|
if(RCD_FLOORWALL)
|
|
to_chat(user, span_notice("You build a floor."))
|
|
PlaceOnTop(/turf/open/floor/plating, flags = CHANGETURF_INHERIT_AIR)
|
|
return TRUE
|
|
if(RCD_AIRLOCK) // I'm sorry
|
|
for(var/obj/machinery/door/door in src)
|
|
if(door.sub_door)
|
|
continue
|
|
to_chat(user, span_notice("There is another door here!"))
|
|
return FALSE
|
|
if(ispath(the_rcd.airlock_type, /obj/machinery/door/window))
|
|
to_chat(user, span_notice("You build a windoor."))
|
|
var/obj/machinery/door/window/new_window = new the_rcd.airlock_type(src, user.dir, the_rcd.airlock_electronics?.unres_sides)
|
|
if(the_rcd.airlock_electronics)
|
|
new_window.name = the_rcd.airlock_electronics.passed_name || initial(new_window.name)
|
|
if(the_rcd.airlock_electronics.one_access)
|
|
new_window.req_one_access = the_rcd.airlock_electronics.accesses.Copy()
|
|
else
|
|
new_window.req_access = the_rcd.airlock_electronics.accesses.Copy()
|
|
new_window.autoclose = TRUE
|
|
new_window.update_appearance()
|
|
return TRUE
|
|
to_chat(user, span_notice("You build an airlock."))
|
|
var/obj/machinery/door/airlock/new_airlock = new the_rcd.airlock_type(src)
|
|
new_airlock.electronics = new /obj/item/electronics/airlock(new_airlock)
|
|
if(the_rcd.airlock_electronics)
|
|
new_airlock.electronics.accesses = the_rcd.airlock_electronics.accesses.Copy()
|
|
new_airlock.electronics.one_access = the_rcd.airlock_electronics.one_access
|
|
new_airlock.electronics.unres_sides = the_rcd.airlock_electronics.unres_sides
|
|
new_airlock.electronics.passed_name = the_rcd.airlock_electronics.passed_name
|
|
new_airlock.electronics.passed_cycle_id = the_rcd.airlock_electronics.passed_cycle_id
|
|
if(new_airlock.electronics.one_access)
|
|
new_airlock.req_one_access = new_airlock.electronics.accesses
|
|
else
|
|
new_airlock.req_access = new_airlock.electronics.accesses
|
|
if(new_airlock.electronics.unres_sides)
|
|
new_airlock.unres_sides = new_airlock.electronics.unres_sides
|
|
new_airlock.unres_sensor = TRUE
|
|
if(new_airlock.electronics.passed_name)
|
|
new_airlock.name = sanitize(new_airlock.electronics.passed_name)
|
|
if(new_airlock.electronics.passed_cycle_id)
|
|
new_airlock.closeOtherId = new_airlock.electronics.passed_cycle_id
|
|
new_airlock.update_other_id()
|
|
new_airlock.autoclose = TRUE
|
|
new_airlock.update_appearance()
|
|
return TRUE
|
|
if(RCD_WINDOWGRILLE)
|
|
if(locate(/obj/structure/grille) in src)
|
|
return FALSE
|
|
to_chat(user, span_notice("You construct the grille."))
|
|
var/obj/structure/grille/new_grille = new(src)
|
|
new_grille.set_anchored(TRUE)
|
|
return TRUE
|
|
if(RCD_MACHINE)
|
|
if(locate(/obj/structure/frame/machine) in src)
|
|
return FALSE
|
|
var/obj/structure/frame/machine/new_machine = new(src)
|
|
new_machine.state = 2
|
|
new_machine.icon_state = "box_1"
|
|
new_machine.set_anchored(TRUE)
|
|
return TRUE
|
|
if(RCD_COMPUTER)
|
|
if(locate(/obj/structure/frame/computer) in src)
|
|
return FALSE
|
|
var/obj/structure/frame/computer/new_computer = new(src)
|
|
new_computer.set_anchored(TRUE)
|
|
new_computer.state = 1
|
|
new_computer.setDir(the_rcd.computer_dir)
|
|
return TRUE
|
|
if(RCD_FURNISHING)
|
|
if(locate(the_rcd.furnish_type) in src)
|
|
return FALSE
|
|
var/atom/new_furnish = new the_rcd.furnish_type(src)
|
|
new_furnish.setDir(user.dir)
|
|
return TRUE
|
|
return FALSE
|