mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-20 07:12:55 +00:00
- Lighting process now yields at 10% of a tick and defers at 80% of a tick - There is no longer a limit to how many sources/corners/overlays will update in a single work run - Source/corner/overlay totals are now simple counts instead of lists - Lighting update stats now show updates over each of the previous 5 seconds - Space turfs now remove their starlight when changing to a different turf, fixing a runtime
99 lines
3.4 KiB
Plaintext
99 lines
3.4 KiB
Plaintext
/var/lighting_overlays_initialised = FALSE
|
|
|
|
/var/list/lighting_update_lights = list() // List of lighting sources queued for update.
|
|
/var/list/lighting_update_corners = list() // List of lighting corners queued for update.
|
|
/var/list/lighting_update_overlays = list() // List of lighting overlays queued for update.
|
|
|
|
/var/list/lighting_update_lights_old = list() // List of lighting sources currently being updated.
|
|
/var/list/lighting_update_corners_old = list() // List of lighting corners currently being updated.
|
|
/var/list/lighting_update_overlays_old = list() // List of lighting overlays currently being updated.
|
|
|
|
|
|
/datum/controller/process/lighting
|
|
// Queues of update counts, waiting to be rolled into stats lists
|
|
var/list/stats_queues = list(
|
|
"Source" = list(), "Corner" = list(), "Overlay" = list())
|
|
// Stats lists
|
|
var/list/stats_lists = list(
|
|
"Source" = list(), "Corner" = list(), "Overlay" = list())
|
|
var/update_stats_every = (1 SECONDS)
|
|
var/next_stats_update = 0
|
|
var/stat_updates_to_keep = 5
|
|
|
|
/datum/controller/process/lighting/setup()
|
|
name = "lighting"
|
|
|
|
schedule_interval = 0 // run as fast as you possibly can
|
|
sleep_interval = 10 // Yield every 10% of a tick
|
|
defer_usage = 80 // Defer at 80% of a tick
|
|
create_all_lighting_overlays()
|
|
lighting_overlays_initialised = TRUE
|
|
|
|
// Pre-process lighting once before the round starts. Wait 30 seconds so the away mission has time to load.
|
|
spawn(300)
|
|
doWork(1)
|
|
|
|
/datum/controller/process/lighting/doWork(roundstart)
|
|
|
|
lighting_update_lights_old = lighting_update_lights //We use a different list so any additions to the update lists during a delay from scheck() don't cause things to be cut from the list without being updated.
|
|
lighting_update_lights = list()
|
|
for(var/datum/light_source/L in lighting_update_lights_old)
|
|
|
|
if(L.check() || L.destroyed || L.force_update)
|
|
L.remove_lum()
|
|
if(!L.destroyed)
|
|
L.apply_lum()
|
|
|
|
else if(L.vis_update) //We smartly update only tiles that became (in) visible to use.
|
|
L.smart_vis_update()
|
|
|
|
L.vis_update = FALSE
|
|
L.force_update = FALSE
|
|
L.needs_update = FALSE
|
|
|
|
SCHECK
|
|
|
|
lighting_update_corners_old = lighting_update_corners //Same as above.
|
|
lighting_update_corners = list()
|
|
for(var/A in lighting_update_corners_old)
|
|
var/datum/lighting_corner/C = A
|
|
|
|
C.update_overlays()
|
|
|
|
C.needs_update = FALSE
|
|
|
|
SCHECK
|
|
|
|
lighting_update_overlays_old = lighting_update_overlays //Same as above.
|
|
lighting_update_overlays = list()
|
|
|
|
for(var/A in lighting_update_overlays_old)
|
|
var/atom/movable/lighting_overlay/O = A
|
|
O.update_overlay()
|
|
O.needs_update = 0
|
|
SCHECK
|
|
|
|
stats_queues["Source"] += lighting_update_lights_old.len
|
|
stats_queues["Corner"] += lighting_update_corners_old.len
|
|
stats_queues["Overlay"] += lighting_update_overlays_old.len
|
|
|
|
if(next_stats_update <= world.time)
|
|
next_stats_update = world.time + update_stats_every
|
|
for(var/stat_name in stats_queues)
|
|
var/stat_sum = 0
|
|
var/list/stats_queue = stats_queues[stat_name]
|
|
for(var/count in stats_queue)
|
|
stat_sum += count
|
|
stats_queue.Cut()
|
|
|
|
var/list/stats_list = stats_lists[stat_name]
|
|
stats_list.Insert(1, stat_sum)
|
|
if(stats_list.len > stat_updates_to_keep)
|
|
stats_list.Cut(stats_list.len)
|
|
|
|
/datum/controller/process/lighting/statProcess()
|
|
..()
|
|
stat(null, "[total_lighting_sources] sources, [total_lighting_corners] corners, [total_lighting_overlays] overlays")
|
|
for(var/stat_type in stats_lists)
|
|
stat(null, "[stat_type] updates: [jointext(stats_lists[stat_type], " | ")]")
|