mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* Part 1 * Refactor signals into different files * Remove redundant file * Add missing movable signals * Add signals log * Split signal registering with list into new proc * Add comments to component.dm and remove signal_enabled * Fix yogs code * Not this one * Hopefully make linter happy * Remove duplicate file * More duplicates signals
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
/datum/component/tether
|
|
dupe_mode = COMPONENT_DUPE_UNIQUE_PASSARGS
|
|
var/atom/tether_target
|
|
var/max_dist
|
|
var/tether_name
|
|
|
|
/datum/component/tether/Initialize(atom/tether_target, max_dist = 4, tether_name)
|
|
if(!isliving(parent) || !istype(tether_target) || !tether_target.loc)
|
|
return COMPONENT_INCOMPATIBLE
|
|
src.tether_target = tether_target
|
|
src.max_dist = max_dist
|
|
if (ispath(tether_name, /atom))
|
|
var/atom/tmp = tether_name
|
|
src.tether_name = initial(tmp.name)
|
|
else
|
|
src.tether_name = tether_name
|
|
RegisterSignals(parent, list(COMSIG_MOVABLE_PRE_MOVE), .proc/checkTether)
|
|
|
|
/datum/component/tether/proc/checkTether(mob/mover, newloc)
|
|
if (get_dist(mover,newloc) > max_dist)
|
|
to_chat(mover, span_userdanger("The [tether_name] runs out of slack and prevents you from moving!"))
|
|
return COMPONENT_MOVABLE_BLOCK_PRE_MOVE
|
|
|
|
var/atom/blocker
|
|
out:
|
|
for(var/turf/T in getline(tether_target,newloc))
|
|
if (T.density)
|
|
blocker = T
|
|
break out
|
|
for(var/a in T)
|
|
var/atom/A = a
|
|
if(A.density && A != mover && A != tether_target)
|
|
blocker = A
|
|
break out
|
|
if (blocker)
|
|
to_chat(mover, span_userdanger("The [tether_name] catches on [blocker] and prevents you from moving!"))
|
|
return COMPONENT_MOVABLE_BLOCK_PRE_MOVE
|