mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 10:11:09 +00:00
* Refactors the list datatype to support composite lists. Adapts a lot of circuits to be able to properly use composite lists. Adds the dispenser shell (#61856) Co-authored-by: Watermelon914 <3052169-Watermelon914@ users.noreply.gitlab.com> Co-authored-by: Colovorat <35225170+Colovorat@ users.noreply.github.com> * Refactors the list datatype to support composite lists. Adapts a lot of circuits to be able to properly use composite lists. Adds the dispenser shell Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com> Co-authored-by: Watermelon914 <3052169-Watermelon914@ users.noreply.gitlab.com> Co-authored-by: Colovorat <35225170+Colovorat@ users.noreply.github.com>
43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
/**
|
|
* This subsystem is to handle creating and storing
|
|
* composite templates that are used to create composite datatypes
|
|
* for integrated circuits
|
|
*
|
|
* See: https://en.wikipedia.org/wiki/Composite_data_type
|
|
**/
|
|
SUBSYSTEM_DEF(wiremod_composite)
|
|
name = "Wiremod Composite Templates"
|
|
flags = SS_NO_FIRE
|
|
/// The templates created and stored
|
|
var/list/templates = list()
|
|
|
|
/datum/controller/subsystem/wiremod_composite/New()
|
|
. = ..()
|
|
// This needs to execute before global variables have initialized.
|
|
for(var/datum/circuit_composite_template/type as anything in subtypesof(/datum/circuit_composite_template))
|
|
if(!initial(type.datatype))
|
|
continue
|
|
templates[initial(type.datatype)] = new type()
|
|
|
|
/datum/controller/subsystem/wiremod_composite/Initialize(start_timeofday)
|
|
. = ..()
|
|
for(var/type in templates)
|
|
var/datum/circuit_composite_template/template = templates[type]
|
|
template.Initialize()
|
|
|
|
/**
|
|
* Used to produce a composite datatype using another datatype, or
|
|
* to get an already existing composite datatype.
|
|
*/
|
|
/datum/controller/subsystem/wiremod_composite/proc/composite_datatype(datatype, ...)
|
|
var/datum/circuit_composite_template/type = templates[datatype]
|
|
if(!type)
|
|
return
|
|
return type.generate_composite_type(args.Copy(2))
|
|
|
|
/datum/controller/subsystem/wiremod_composite/proc/get_composite_type(base_type, datatype)
|
|
var/datum/circuit_composite_template/template = templates[base_type]
|
|
if(!template)
|
|
return
|
|
return template.generated_types[datatype]
|