mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-03-24 04:33:23 +00:00
* ports the chat settings update * . * . * follow up changes * zod * migration changes from jl * this will blow up badly * yuck * . * . * order * . * : * be gone * . * . * logging * dix logging * move to its own atom * fix settings import * . * fix audio * tgui fix * . * archiving as atom * more changes from JL * bring back default archive all * no stale state * no need to run twice * - * we need both anyway * dep up * . * build fixes port * Fix file path replacement in build script * backend update * . * . * use the tg method * only use as unchunked fallback for say etc * . * linter errors * tg's chunking methód should be sane enough * sadly still not * update for tg chunking * force those * jl suggestion * . * needs game atom * push * have this * we only want to store if a page was changed or added * only store what we really care about * fixes import port * we need settings first * recoloring shouldn't be a pain * partial * . * some type fixing * . * no throw of events * ree map might not be there yet * . * always store our settings * this is a valid crash * ss early assets * saver image access * missed unsafe access * . * move chat loading order * . * . * . * . * missing unregs * keep the ref map name, just don't bother * await the asset like redux did before * try that? * . * use await * biome up * better handling as JL did on tg * rename * last dep up * major bump here * major bump --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
SUBSYSTEM_DEF(assets)
|
|
name = "Assets"
|
|
dependencies = list(
|
|
/datum/controller/subsystem/atoms,
|
|
/datum/controller/subsystem/holomaps,
|
|
/datum/controller/subsystem/robot_sprites
|
|
)
|
|
flags = SS_NO_FIRE
|
|
var/list/datum/asset_cache_item/cache = list()
|
|
var/list/preload = list()
|
|
var/datum/asset_transport/transport = new()
|
|
|
|
/datum/controller/subsystem/assets/OnConfigLoad()
|
|
var/newtransporttype = /datum/asset_transport
|
|
switch (CONFIG_GET(string/asset_transport))
|
|
if ("webroot")
|
|
newtransporttype = /datum/asset_transport/webroot
|
|
|
|
if (newtransporttype == transport.type)
|
|
return
|
|
|
|
var/datum/asset_transport/newtransport = new newtransporttype ()
|
|
if (newtransport.validate_config())
|
|
transport = newtransport
|
|
transport.Load()
|
|
|
|
/datum/controller/subsystem/assets/Initialize()
|
|
for(var/type in typesof(/datum/asset))
|
|
var/datum/asset/A = type
|
|
if (type != initial(A._abstract))
|
|
load_asset_datum(type)
|
|
|
|
transport.Initialize(cache)
|
|
|
|
return SS_INIT_SUCCESS
|
|
|
|
/datum/controller/subsystem/assets/Recover()
|
|
cache = SSassets.cache
|
|
preload = SSassets.preload
|