mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
* ONLY SKYRAT CHANGES * ACTUALLY SKYRAT CHANGES * yolo, revert later * Update alternate_byond_versions.txt Co-authored-by: AnturK <AnturK@users.noreply.github.com>
47 lines
951 B
Plaintext
47 lines
951 B
Plaintext
SUBSYSTEM_DEF(pathfinder)
|
|
name = "Pathfinder"
|
|
init_order = INIT_ORDER_PATH
|
|
flags = SS_NO_FIRE
|
|
var/datum/flowcache/mobs
|
|
var/static/space_type_cache
|
|
|
|
/datum/controller/subsystem/pathfinder/Initialize()
|
|
space_type_cache = typecacheof(/turf/open/space)
|
|
mobs = new(10)
|
|
return SS_INIT_SUCCESS
|
|
|
|
/datum/flowcache
|
|
var/lcount
|
|
var/run
|
|
var/free
|
|
var/list/flow
|
|
|
|
/datum/flowcache/New(n)
|
|
. = ..()
|
|
lcount = n
|
|
run = 0
|
|
free = 1
|
|
flow = new/list(lcount)
|
|
|
|
/datum/flowcache/proc/getfree(atom/M)
|
|
if(run < lcount)
|
|
run += 1
|
|
while(flow[free])
|
|
CHECK_TICK
|
|
free = (free % lcount) + 1
|
|
var/t = addtimer(CALLBACK(src, TYPE_PROC_REF(/datum/flowcache, toolong), free), 150, TIMER_STOPPABLE)
|
|
flow[free] = t
|
|
flow[t] = M
|
|
return free
|
|
else
|
|
return 0
|
|
|
|
/datum/flowcache/proc/toolong(l)
|
|
log_game("Pathfinder route took longer than 150 ticks, src bot [flow[flow[l]]]")
|
|
found(l)
|
|
|
|
/datum/flowcache/proc/found(l)
|
|
deltimer(flow[l])
|
|
flow[l] = null
|
|
run -= 1
|