Files
Bubberstation/code/datums/components
gavla 97cc8c86cf Every donator request. Finally. (#1537)
## About The Pull Request

This PR is meant to add toys, clothes, markings and more cosmetics
requested by donators of Bubberstation.
This was a task I assigned myself to take on for a long while. I decided
to push this out in a PR to track progress.

Artists: Crumpaloo, Casey/Keil, Wolf751, bitsynapse.

<details>
<summary>Full list of additions</summary>
<br> -Blovy's plush, bottle, and suit. ✓
<br> -Farren's markings, hair, tail, wings, more. ✧ (semi-complete. but
mostly good to go.)
<br> -Astroturf's plush. ✓
<br> -exfil's wings. ✓
<br> -patriot210's clothing set ✓
<br> -detrender's in-hand item ✓
<br> -ironknight060's clothing set and item. ✓
<br> -Gavla's birthday plush ✓
<br> -Big deer hand sprites ✓
<br> -Andrew Mower's plush ✓
<br> -Ringing bell collars (needs more modularization) ✓
<br>
<br>
<br>ignore the commits from May 1, 2024. I am bad at github.
</details>

## Why It's Good For The Game

Supporters of the server should receive in-game things as thanks.

## Proof Of Testing

Every commit is tested on my local beforehand before it is pushed. 



https://github.com/Bubberstation/Bubberstation/assets/96078776/833dbf4b-b63b-4205-8299-65ec7f170e81



https://github.com/Bubberstation/Bubberstation/assets/96078776/48ba3d2d-24ff-4535-b7d4-4b4f644627f2



https://github.com/Bubberstation/Bubberstation/assets/96078776/2b4ba30c-d7f4-4b6c-92d2-dcf5df7c78b2



![image
(6)](https://github.com/Bubberstation/Bubberstation/assets/96078776/c86c45de-661c-433a-a7fd-cb5a0ecb06e7)


## Changelog

🆑 Shayoki, Crumpaloo, Keila, Wolf751, bitsynapse.
add: Donator toys and clothes have arrived.

---------

Co-authored-by: Otome <darkwolfinsanity@gmail.com>
Co-authored-by: projectkepler-RU <99981766+projectkepler-ru@users.noreply.github.com>
Co-authored-by: Waterpig <49160555+Majkl-J@users.noreply.github.com>
Co-authored-by: Bubberbot <151680451+Bubberbot@users.noreply.github.com>
Co-authored-by: lessthanthree <83487515+lessthnthree@users.noreply.github.com>
Co-authored-by: Swiftfeather <jackwars4@gmail.com>
Co-authored-by: Cursor <102828457+theselfish@users.noreply.github.com>
2024-06-03 08:45:16 +00:00
..
2024-04-28 22:24:01 +02:00
2024-04-29 21:15:33 +02:00
2024-05-12 13:06:16 +00:00
2024-04-26 01:22:24 +02:00
2024-05-18 11:40:59 -04:00
2024-04-06 18:58:02 -04:00
2024-02-20 01:00:11 +01:00
2024-03-01 19:05:23 +01:00
2024-04-26 01:22:24 +02:00
2024-04-26 01:22:24 +02:00
2024-04-26 01:22:24 +02:00
2024-04-29 21:15:33 +02:00
2024-04-29 21:15:33 +02:00
2024-04-28 22:24:01 +02:00
2024-04-23 20:43:45 +02:00
2024-04-29 21:15:33 +02:00
2024-04-28 22:24:01 +02:00
2024-04-16 06:05:57 +00:00
2024-05-30 05:38:16 +00:00
2024-04-26 01:22:24 +02:00
2024-05-18 11:40:59 -04:00

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.

HackMD page for an introduction to the system as a whole.

See/Define signals and their arguments in __DEFINES\components.dm