Yogstation 13 - Modules - TypesDefine Details

code/__DEFINES/text.dm

FOURSPACESDoes 4 spaces. Used as a makeshift tabulator.
MAPTEXTStandard maptext Prepares a text to be used for maptext. Use this so it doesn't look hideous.
MAPTEXT_PIXELLARIPixel-perfect scaled fonts for use in the MAP element as defined in skin.dmf
MAPTEXT_GRAND9KStandard size (ie: normal runechat) - Size options: 6pt 12pt 18pt.
MAPTEXT_TINY_UNICODESmall size. (ie: context subtooltips, spell delays) - Size options: 12pt 24pt.
MAPTEXT_SPESSFONTSmallest size. (ie: whisper runechat) - Size options: 6pt 12pt 18pt.
MAPTEXT_VCR_OSD_MONOPrepares a text to be used for maptext, using a variable size font.
WXH_TO_HEIGHTMacro from Lummox used to get height from a MeasureText proc. resolves the MeasureText() return value once, then resolves the height, then sets return_var to that.
SANITIZE_FILENAMERemoves characters incompatible with file names.
STRIP_HTML_SIMPLESimply removes the < and > characters, and limits the length of the message.
STRIP_HTML_FULLRemoves everything enclose in < and > inclusive of the bracket, and limits the length of the message.
BRAIN_DAMAGE_FILEFile location for brain damage traumas
ION_FILEFile location for AI ion laws
PIRATE_NAMES_FILEFile location for pirate names
REDPILL_FILEFile location for redpill questions
WANTED_FILEFile location for wanted posters messages
VISTA_FILEFile location for really dumb suggestions memes
FLESH_SCAR_FILEFile location for flesh wound descriptions
BONE_SCAR_FILEFile location for bone wound descriptions
SCAR_LOC_FILEFile location for scar wound descriptions

Define Details

BONE_SCAR_FILE

File location for bone wound descriptions

BRAIN_DAMAGE_FILE

File location for brain damage traumas

FLESH_SCAR_FILE

File location for flesh wound descriptions

FOURSPACES

Does 4 spaces. Used as a makeshift tabulator.

ION_FILE

File location for AI ion laws

MAPTEXT

Standard maptext Prepares a text to be used for maptext. Use this so it doesn't look hideous.

MAPTEXT_GRAND9K

Standard size (ie: normal runechat) - Size options: 6pt 12pt 18pt.

MAPTEXT_PIXELLARI

Pixel-perfect scaled fonts for use in the MAP element as defined in skin.dmf

Four sizes to choose from, use the sizes as mentioned below. Between the variations and a step there should be an option that fits your use case. BYOND uses pt sizing, different than px used in TGUI. Using px will make it look blurry due to poor antialiasing.

Default sizes are prefilled in the macro for ease of use and a consistent visual look. To use a step other than the default in the macro, specify it in a span style. For example: MAPTEXT_PIXELLARI("Some large maptext here") Large size (ie: context tooltips) - Size options: 12pt 24pt.

MAPTEXT_SPESSFONT

Smallest size. (ie: whisper runechat) - Size options: 6pt 12pt 18pt.

MAPTEXT_TINY_UNICODE

Small size. (ie: context subtooltips, spell delays) - Size options: 12pt 24pt.

MAPTEXT_VCR_OSD_MONO

Prepares a text to be used for maptext, using a variable size font.

More flexible but doesn't scale pixel perfect to BYOND icon resolutions. (May be blurry.) Can use any size in pt or px.

You MUST Specify the size when using the macro For example: MAPTEXT_VCR_OSD_MONO("Some large maptext here") Prepares a text to be used for maptext, using a variable size font. Variable size font. More flexible but doesn't scale pixel perfect to BYOND icon resolutions. (May be blurry.) Can use any size in pt or px.

PIRATE_NAMES_FILE

File location for pirate names

REDPILL_FILE

File location for redpill questions

SANITIZE_FILENAME

Removes characters incompatible with file names.

SCAR_LOC_FILE

File location for scar wound descriptions

STRIP_HTML_FULL

Removes everything enclose in < and > inclusive of the bracket, and limits the length of the message.

STRIP_HTML_SIMPLE

Simply removes the < and > characters, and limits the length of the message.

VISTA_FILE

File location for really dumb suggestions memes

WANTED_FILE

File location for wanted posters messages

WXH_TO_HEIGHT

Macro from Lummox used to get height from a MeasureText proc. resolves the MeasureText() return value once, then resolves the height, then sets return_var to that.