mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
25 lines
1.2 KiB
Plaintext
25 lines
1.2 KiB
Plaintext
// Cleaning flags
|
|
|
|
// Different kinds of things that can be cleaned.
|
|
// Use these when overriding the wash proc or registering for the clean signals to check if your thing should be cleaned
|
|
#define CLEAN_TYPE_BLOOD (1 << 0)
|
|
#define CLEAN_TYPE_RUNES (1 << 1)
|
|
#define CLEAN_TYPE_FINGERPRINTS (1 << 2)
|
|
#define CLEAN_TYPE_BELLY (1 << 3) // Belly contaminants
|
|
#define CLEAN_TYPE_FIBERS (1 << 4)
|
|
#define CLEAN_TYPE_RADIATION (1 << 5)
|
|
#define CLEAN_TYPE_DISEASE (1 << 6)
|
|
#define CLEAN_TYPE_WEAK (1 << 7) // Special type, add this flag to make some cleaning processes non-instant.
|
|
#define CLEAN_TYPE_PAINT (1 << 8)
|
|
/// Cleans decals such as dirt and oil off the floor
|
|
#define CLEAN_TYPE_LIGHT_DECAL (1 << 9)
|
|
/// Cleans decals such as cobwebs off the floor
|
|
#define CLEAN_TYPE_HARD_DECAL (1 << 10)
|
|
|
|
// Different cleaning methods.
|
|
// Use these when calling the wash proc for your cleaning apparatus
|
|
#define CLEAN_WASH (CLEAN_TYPE_BLOOD | CLEAN_TYPE_RUNES | CLEAN_TYPE_DISEASE | CLEAN_TYPE_LIGHT_DECAL | CLEAN_TYPE_BELLY)
|
|
#define CLEAN_SCRUB (CLEAN_WASH | CLEAN_TYPE_FINGERPRINTS | CLEAN_TYPE_FIBERS | CLEAN_TYPE_PAINT | CLEAN_TYPE_HARD_DECAL)
|
|
#define CLEAN_RAD CLEAN_TYPE_RADIATION
|
|
#define CLEAN_ALL (ALL & ~CLEAN_TYPE_WEAK)
|