home *** CD-ROM | disk | FTP | other *** search
- // Revenant - Copyright 1999 Cinematix Studios, Inc.
- // *********** Revenant FONT DEF File *************
- //
- // BMFONT "name" <NORMAL "normal">
- // <SHADOW "shadow"> <COLOR r g b> <GLOW "glow"> <GCOLOR r g b>
- // <SELECT "select"> <SCOLOR r g b> <LEXTRA lineextra> <CEXTRA charextra> <DRAWMODE dmflags>
- //
- // WINFONT "name" FONT "fontname" size <BOLD> <ITALICS>
- // <COLOR r g b> <GCOLOR r g b> <SCOLOR r g b> <LEXTRA lineextra> <CEXTRA charextra>
- //
- // "name" Internal system name for font. Can be "System", "Dialog", "Small", "Gold",
- // "GoldMed", "Scroll", and "Book"
- // SHADOW Shadowed version of font
- // COLOR Default font color
- // GLOW/GCOLOR Glowing version of font and glow color
- // SELECT/SCOLOR Selected version of font and select color
- // LEXTRA Extra space for lines for word wrapped text
- // CEXTRA Extra space between characters
- // DRAWMODE Draw mode flags for bitmap fonts (system default is DM_TRANSPARENT | DM_ALIAS)
-
- // Flags used for font drawmode (if needed)
- #define DM_DEFAULT 0x00000000 // Default is always defined as 0
- #define DM_NOCLIP 0x00000001 // Disables clipping when drawing
- #define DM_WRAPCLIP 0x00000002 // Enables wrap clipping (forces wrap clipping regardless of surface wrap mode)
- #define DM_WRAPCLIPSRC 0x00000004 // Enables wrap clipping of source buffer (forces wrapsrc clipping regardless of surface wrap mode)
- #define DM_STRETCH 0x00000008 // Enables Stretching when drawing
- #define DM_BACKGROUND 0x00000010 // Draws bitmap to background
- #define DM_NORESTORE 0x00000020 // Disables automatic background restoring
- #define DM_REVERSEVERT 0x00000040 // Reverses vertical orientation
- #define DM_REVERSEHORZ 0x00000080 // Reverses horizontal orientation
- #define DM_TRANSPARENT 0x00000100 // Enables transparent drawing.
- #define DM_ZMASK 0x00000200 // Enables ZBuffer Masking.
- #define DM_ZBUFFER 0x00000400 // Draws bitmap ZBuffer to destination ZBuffer
- #define DM_NORMALS 0x00000800 // Draws bitmap Normals to dest. Normal buffer
- #define DM_ALIAS 0x00001000 // Antiailiases edges using bitmap alias data.
- #define DM_ALPHA 0x00002000 // Enables Alpha drawing.
- #define DM_SHUTTER 0x00004000 // Enable Shutter transparent drawing.
- #define DM_TRANSLUCENT 0x00008000 // Enables Translucent drawing.
- #define DM_FADE 0x00010000 // Fade image to key color.
- #define DM_USEREG 0x00020000 // Draws bitmap based on registration point
- #define DM_SELECTED 0x00040000 // Draw selection highlight around bitmap
- #define DM_CHANGECOLOR 0x00080000 // Draw in a different color
- #define DM_CHANGEHUE 0x00100000 // Use color to modify hue of image
- #define DM_CHANGESV 0x00200000 // Use color to modify saturation and brightness
- #define DM_NODRAW 0x00400000 // Prevents bitmap graphics buffer from drawing to destination
- #define DM_ZSTATIC 0x00800000 // Draws bitmap at a static z value
- #define DM_ALPHALIGHTEN 0x01000000 // Enables Alpha drawing lighten only.
- #define DM_DOESCALLBACK 0x02000000 // Flag set by low level draw func indicating it calls rect CALLBACK itself
- #define DM_NOWRAPCLIP 0x04000000 // Overrides surface clipping mode to not wrap clip
- #define DM_NOHARDWARE 0x08000000 // Force no hardware use
- #define DM_NOCHECKZ 0x10000000 // Causes ZBuffer Draws to use transparency only (no Z intersection)
- #define DM_FILL 0x20000000 // Fills the destination with the current color
- #define DM_USEDEFAULT 0x80000000 // Causes draw routines to supply a default value
-
- BMFONT "System" NORMAL "sysfont" COLOR 0 255 0 LEXTRA 2
- WINFONT "Dialog" FONT "Times New Roman" 20 COLOR 50 180 255 GCOLOR 0 0 255 SCOLOR 255 255 255
- BMFONT "Scroll" NORMAL "scrlfont" LEXTRA 4
- BMFONT "Book" NORMAL "scrlfont" LEXTRA 4
- WINFONT "Numbers" FONT "Arial" 12 COLOR 255 0 0
- WINFONT "Small" FONT "Arial" 12 COLOR 255 255 255 GCOLOR 0 200 255 SCOLOR 255 255 0
- WINFONT "Med" FONT "Arial" 16 BOLD COLOR 255 255 255 GCOLOR 0 200 255 SCOLOR 255 255 0
- WINFONT "Large" FONT "Times New Roman" 20 BOLD COLOR 255 255 255 GCOLOR 0 200 255 SCOLOR 255 255 0
- BMFONT "Gold" NORMAL "smallgold" SHADOW "smallgoldshad" GLOW "smallgoldglow" SELECT "smallgoldsel"
- BMFONT "GoldMed" NORMAL "medgold" SHADOW "medgoldshad" GLOW "medgoldglow" SELECT "medgoldsel"
- WINFONT "SpellTitle" FONT "Times New Roman" 18 COLOR 255 255 255 GCOLOR 0 200 255 SCOLOR 255 255 0
- WINFONT "Version" FONT "Arial" 12 COLOR 175 72 255 GCOLOR 175 72 255 SCOLOR 175 72 255
-