9.4 KiB
Datum Component System (DCS)
Concept
Loosely adapted from /vg/. This is an entity component system for adding behaviours to datums when inheritance doesn't quite cut it. By using signals and events instead of direct inheritance, you can inject behaviours without hacky overloads. It requires a different method of thinking, but is not hard to use correctly. If a behaviour can have application across more than one thing. Make it generic, make it a component. Atom/mob/obj event? Give it a signal, and forward it's arguments with a SendSignal() call. Now every component that want's to can also know about this happening.
In the code
Slippery things
At the time of this writing, every object that is slippery overrides atom/Crossed does some checks, then slips the mob. Instead of all those Crossed overrides they could add a slippery component to all these objects. And have the checks in one proc that is run by the Crossed event
Powercells
A lot of objects have powercells. The get_cell() proc was added to give generic access to the cell var if it had one. This is just a specific use case of GetComponent()
Radios
The radio object as it is should not exist, given that more things use the concept of radios rather than the object itself. The actual function of the radio can exist in a component which all the things that use it (Request consoles, actual radios, the SM shard) can add to themselves.
Standos
Stands have a lot of procs which mimic mob procs. Rather than inserting hooks for all these procs in overrides, the same can be accomplished with signals
API
Defines
COMPONENT_INCOMPATIBLEReturn this from/datum/component/Initializeordatum/component/OnTransferto have the component be deleted if it's applied to an incorrect type.parentmust not be modified if this is to be returned. This will be noted in the runtime logs
Vars
/datum/var/list/datum_components(private)- Lazy associated list of type -> component/list of components.
/datum/var/list/comp_lookup(private)- Lazy associated list of signal -> registree/list of registrees
/datum/var/list/signal_procs(private)- Associated lazy list of signals ->
/datum/callbacks that will be run when the parent datum receives that signal
- Associated lazy list of signals ->
/datum/var/signal_enabled(protected, boolean)- If the datum is signal enabled. If not, it will not react to signals
FALSEby default, set toTRUEwhen a signal is registered
/datum/component/var/dupe_mode(protected, enum)- How duplicate component types are handled when added to the datum.
COMPONENT_DUPE_HIGHLANDER(default): Old component will be deleted, new component will first have/datum/component/proc/InheritComponent(datum/component/old, FALSE)on itCOMPONENT_DUPE_ALLOWED: The components will be treated as separate,GetComponent()will return the first addedCOMPONENT_DUPE_UNIQUE: New component will be deleted, old component will first have/datum/component/proc/InheritComponent(datum/component/new, TRUE)on itCOMPONENT_DUPE_UNIQUE_PASSARGS: New component will never exist and instead its initialization arguments will be passed on to the old component.
- How duplicate component types are handled when added to the datum.
/datum/component/var/dupe_type(protected, type)- Definition of a duplicate component type
nullmeans exact match ontype(default)- Any other type means that and all subtypes
- Definition of a duplicate component type
/datum/component/var/datum/parent(protected, read-only)- The datum this component belongs to
- Never
nullin child procs
report_signal_origin(protected, boolean)- If
TRUE, will invoke the callback when signalled with the signal type as the first argument. FALSEby default.
- If
Procs
/datum/proc/GetComponent(component_type(type)) -> datum/component?(public, final)- Returns a reference to a component of component_type if it exists in the datum, null otherwise
/datum/proc/GetComponents(component_type(type)) -> list(public, final)- Returns a list of references to all components of component_type that exist in the datum
/datum/proc/GetExactComponent(component_type(type)) -> datum/component?(public, final)- Returns a reference to a component whose type MATCHES component_type if that component exists in the datum, null otherwise
SEND_SIGNAL(target, sigtype, ...)(public, final)- Use to send signals to target datum
- Extra arguments are to be specified in the signal definition
- Returns a bitflag with signal specific information assembled from all activated components
- Arguments are packaged in a list and handed off to _SendSignal()
/datum/proc/AddComponent(component_type(type), ...) -> datum/component(public, final)- Creates an instance of
component_typein the datum and passes...to itsInitialize()call - Sends the
COMSIG_COMPONENT_ADDEDsignal to the datum - All components a datum owns are deleted with the datum
- Returns the component that was created. Or the old component in a dupe situation where
COMPONENT_DUPE_UNIQUEwas set - If this tries to add an component to an incompatible type, the component will be deleted and the result will be
null. This is very unperformant, try not to do it - Properly handles duplicate situations based on the
dupe_modevar
- Creates an instance of
/datum/proc/LoadComponent(component_type(type), ...) -> datum/component(public, final)- Equivalent to calling
GetComponent(component_type)where, if the result would benull, returnsAddComponent(component_type, ...)instead
- Equivalent to calling
/datum/proc/ComponentActivated(datum/component/C)(abstract, async)- Called on a component's
parentafter a signal received causes it to activate.srcis the parameter - Will only be called if a component's callback returns
TRUE
- Called on a component's
/datum/proc/TakeComponent(datum/component/C)(public, final)- Properly transfers ownership of a component from one datum to another
- Signals
COMSIG_COMPONENT_REMOVINGon the parent - Called on the datum you want to own the component with another datum's component
/datum/proc/_SendSignal(signal, list/arguments)(private, final)- Handles most of the actual signaling procedure
- Will runtime if used on datums with an empty component list
/datum/proc/RegisterSignal(datum/target, signal(string/list of strings), proc_ref(type), override(boolean))(protected, final)- If signal is a list it will be as if RegisterSignal was called for each of the entries with the same following arguments
- Makes the datum listen for the specified
signalon it'sparentdatum. - When that signal is received
proc_refwill be called on the component, along with associated arguments - Example proc ref:
.proc/OnEvent - If a previous registration is overwritten by the call, a runtime occurs. Setting
overrideto TRUE prevents this - These callbacks run asyncronously
- Returning
TRUEfrom these callbacks will trigger aTRUEreturn from theSendSignal()that initiated it
/datum/component/New(datum/parent, ...)(private, final)- Runs internal setup for the component
- Extra arguments are passed to
Initialize()
/datum/component/Initialize(...)(abstract, no-sleep)- Called by
New()with the same argments excludingparent - Component does not exist in
parent'sdatum_componentslist yet, althoughparentis set and may be used - Signals will not be received while this function is running
- Component may be deleted after this function completes without being attached
- Do not call
qdel(src)from this function
- Called by
/datum/component/Destroy(force(bool), silent(bool))(virtual, no-sleep)- Sends the
COMSIG_COMPONENT_REMOVINGsignal to the parent datum if theparentisn't being qdeleted - Properly removes the component from
parentand cleans up references - Setting
forcemakes it not check for and remove the component from the parent - Setting
silentdeletes the component without sending aCOMSIG_COMPONENT_REMOVINGsignal
- Sends the
/datum/component/proc/InheritComponent(datum/component/C, i_am_original(boolean))(abstract, no-sleep)- Called on a component when a component of the same type was added to the same parent
- See
/datum/component/var/dupe_mode C's type will always be the same of the called component
/datum/component/proc/AfterComponentActivated()(abstract, async)- Called on a component that was activated after it's
parent'sComponentActivated()is called
- Called on a component that was activated after it's
/datum/component/proc/OnTransfer(datum/new_parent)(abstract, no-sleep)- Called before
new_parentis assigned toparentinTakeComponent() - Allows the component to react to ownership transfers
- Called before
/datum/component/proc/_RemoveFromParent()(private, final)- Clears
parentand removes the component from it's component list
- Clears
/datum/component/proc/_JoinParent(private, final)- Tries to add the component to it's
parentsdatum_componentslist
- Tries to add the component to it's
/datum/component/proc/RegisterWithParent(abstract, no-sleep)- Used to register the signals that should be on the
parentobject - Use this if you plan on the component transfering between parents
- Used to register the signals that should be on the
/datum/component/proc/UnregisterFromParent(abstract, no-sleep)- Counterpart to
RegisterWithParent() - Used to unregister the signals that should only be on the
parentobject
- Counterpart to