mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
25 lines
1.0 KiB
Plaintext
25 lines
1.0 KiB
Plaintext
PROCESSING_SUBSYSTEM_DEF(projectiles)
|
|
name = "Projectiles"
|
|
wait = 1
|
|
stat_tag = "PP"
|
|
priority = FIRE_PRIORITY_PROJECTILES
|
|
flags = SS_NO_INIT|SS_TICKER
|
|
var/global_max_tick_moves = 10
|
|
var/global_pixel_speed = 2
|
|
var/global_iterations_per_move = 16
|
|
|
|
/datum/controller/subsystem/processing/projectiles/Recover()
|
|
log_debug("[name] subsystem Recover().")
|
|
if(SSprojectiles.current_thing)
|
|
log_debug("current_thing was: (\ref[SSprojectiles.current_thing])[SSprojectiles.current_thing]([SSprojectiles.current_thing.type]) - currentrun: [SSprojectiles.currentrun.len] vs total: [SSprojectiles.processing.len]")
|
|
var/list/old_processing = SSprojectiles.processing.Copy()
|
|
for(var/datum/D in old_processing)
|
|
if(CHECK_BITFIELD(D.datum_flags, DF_ISPROCESSING))
|
|
processing |= D
|
|
|
|
/datum/controller/subsystem/processing/projectiles/proc/set_pixel_speed(new_speed)
|
|
global_pixel_speed = new_speed
|
|
for(var/obj/item/projectile/P as anything in processing)
|
|
if(istype(P)) //there's non projectiles on this too.
|
|
P.set_pixel_speed(new_speed)
|