code/__defines/misc.dm
TRANSITIONEDGE | Width or height of a transition edge area along the map's borders where transition edge turfs are placed to connect levels together. |
---|---|
LEVEL_EDGE_NONE | Enum value for a level edge that's to be untouched |
LEVEL_EDGE_LOOP | Enum value for a level edge that's to be looped with the opposite edge |
LEVEL_EDGE_WALL | Enum value for a level edge that's to be filled with a wall filler turfs |
LEVEL_EDGE_CON | Enum value for a level edge that's to be connected with another z-level |
num2hex | Returns the hex value of a number given a value assumed to be a base-ten value, padded to a minimum length of 2. |
num2hex_padded | Returns the hex value of a number given a value assumed to be a base-ten value, padded to a supplied minimum length. |
MOUSE_OPACITY_UNCLICKABLE | Causes the atom to ignore clicks, hovers, etc. |
MOUSE_OPACITY_NORMAL | Causes the atom to catch clicks, hovers, etc. |
MOUSE_OPACITY_PRIORITY | Causes the atom to catch clicks, hovers, etc, taking priority over NORMAL for a shared pointer target. |
EXCEPTION_TEXT | Formats exceptions into a readable string with all the details. |
FLUORESCENT_GLOWS | Glows when under flourescent light |
FLUORESCENT_GLOWING | Currently glowing due to flourescent light |
UTENSIL_FLAG_COLLECT | Solid or semi-solid food; chopsticks, forks. |
UTENSIL_FLAG_SCOOP | Soft, liquid or semi-liquid food; soups, stews, pudding. |
UTENSIL_FLAG_SLICE | Foods that need to be sliced before eating; steak, grapefruit. |
UTENSIL_FLAG_SPREAD | Unimplemented; condiments that are collected before being spread on other food. |
PROC_REF | Call by name proc references, checks if the proc exists on either this type or as a global proc. |
VERB_REF | Call by name verb references, checks if the verb exists on either this type or as a global verb. |
TYPE_PROC_REF | Call by name proc reference, checks if the proc exists on either the given type or as a global proc |
TYPE_VERB_REF | Call by name verb reference, checks if the verb exists on either the given type or as a global verb |
GLOBAL_PROC_REF | Call by name proc reference, checks if the proc is an existing global proc |
Define Details
EXCEPTION_TEXT
Formats exceptions into a readable string with all the details.
FLUORESCENT_GLOWING
Currently glowing due to flourescent light
FLUORESCENT_GLOWS
Glows when under flourescent light
GLOBAL_PROC_REF
Call by name proc reference, checks if the proc is an existing global proc
LEVEL_EDGE_CON
Enum value for a level edge that's to be connected with another z-level
LEVEL_EDGE_LOOP
Enum value for a level edge that's to be looped with the opposite edge
LEVEL_EDGE_NONE
Enum value for a level edge that's to be untouched
LEVEL_EDGE_WALL
Enum value for a level edge that's to be filled with a wall filler turfs
MOUSE_OPACITY_NORMAL
Causes the atom to catch clicks, hovers, etc.
MOUSE_OPACITY_PRIORITY
Causes the atom to catch clicks, hovers, etc, taking priority over NORMAL for a shared pointer target.
MOUSE_OPACITY_UNCLICKABLE
Causes the atom to ignore clicks, hovers, etc.
PROC_REF
Call by name proc references, checks if the proc exists on either this type or as a global proc.
TRANSITIONEDGE
Width or height of a transition edge area along the map's borders where transition edge turfs are placed to connect levels together.
TYPE_PROC_REF
Call by name proc reference, checks if the proc exists on either the given type or as a global proc
TYPE_VERB_REF
Call by name verb reference, checks if the verb exists on either the given type or as a global verb
UTENSIL_FLAG_COLLECT
Solid or semi-solid food; chopsticks, forks.
UTENSIL_FLAG_SCOOP
Soft, liquid or semi-liquid food; soups, stews, pudding.
UTENSIL_FLAG_SLICE
Foods that need to be sliced before eating; steak, grapefruit.
UTENSIL_FLAG_SPREAD
Unimplemented; condiments that are collected before being spread on other food.
VERB_REF
Call by name verb references, checks if the verb exists on either this type or as a global verb.
num2hex
Returns the hex value of a number given a value assumed to be a base-ten value, padded to a minimum length of 2.
num2hex_padded
Returns the hex value of a number given a value assumed to be a base-ten value, padded to a supplied minimum length.