mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 18:02:57 +00:00
* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
37 lines
931 B
Plaintext
37 lines
931 B
Plaintext
SUBSYSTEM_DEF(parallax)
|
|
name = "Parallax"
|
|
wait = 2
|
|
flags = SS_POST_FIRE_TIMING | SS_FIRE_IN_LOBBY | SS_BACKGROUND | SS_NO_INIT
|
|
priority = 65
|
|
var/list/currentrun
|
|
|
|
/datum/controller/subsystem/parallax/fire(resumed = 0)
|
|
if (!resumed)
|
|
src.currentrun = GLOB.clients.Copy()
|
|
|
|
//cache for sanic speed (lists are references anyways)
|
|
var/list/currentrun = src.currentrun
|
|
|
|
while(length(currentrun))
|
|
var/client/C = currentrun[currentrun.len]
|
|
currentrun.len--
|
|
if (!C || !C.eye)
|
|
if (MC_TICK_CHECK)
|
|
return
|
|
continue
|
|
var/atom/movable/A = C.eye
|
|
if(!A)
|
|
return
|
|
for (A; isloc(A.loc) && !isturf(A.loc); A = A.loc);
|
|
|
|
if(A != C.movingmob)
|
|
if(C.movingmob != null)
|
|
C.movingmob.client_mobs_in_contents -= C.mob
|
|
UNSETEMPTY(C.movingmob.client_mobs_in_contents)
|
|
LAZYINITLIST(A.client_mobs_in_contents)
|
|
A.client_mobs_in_contents += C.mob
|
|
C.movingmob = A
|
|
if (MC_TICK_CHECK)
|
|
return
|
|
currentrun = null
|