home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * FONT.C Set Screen Mode and Font.
- *
- * This program resets a video adapter, selects a font (either 25
- * or 43 lines), and optionally fills the screen with a given
- * display attribute. The cursor is left at the lower left corner
- * of the screen.
- *
- * The command line format is as follows:
- *
- * font mode lines foreground background
- *
- * where "mode" is the display mode (0 to 16). The screen is reset
- * using this mode. If the mode refers to another
- * video device, that device is made current and reset.
- * "Lines" is the number of text lines (25 or 43). Forty-three
- * line mode is only supported on the Enhanced Graphics
- * Adapter (EGA) with the Monochrome Display or the
- * Enhanced Color Display.
- * "Foreground" is the foreground color (0 to 15) with which the
- * screen is filled in text modes.
- * "Background" is the background color (0 to 15) with which the
- * screen is filled in text modes.
- *
- * The command line may have one or more items omitted; if so, the
- * remaining items are interpreted in the order specified. The missing
- * items are given the following default values:
- *
- * "background" defaults to 0 (black);
- * "foreground" defaults to 7 (normal);
- * "lines" defaults to 25.
- *
- * For example,
- *
- * font 3 selects 80x25 color text on a color display
- * with normal attributes.
- *
- * font 3 25 4 selects 80x25 color text mode. Attributes
- * are red on black.
- *
- * font 3 43 15 6 selects 80x43 color text mode on an EGA with
- * an Enhanced Color Display. Attributes are
- * intense white on brown.
- *
- * font 7 selects 80x25 monochrome text mode.
- *
- * font 7 43 selects 80x43 monochrome text mode on an EGA
- * with a Monochrome Display.
- *
- * font 15 selects 80x25 monochrome graphics mode on
- * an EGA with a Monochrome Display.
- *
- * If the mode and number of lines is supported by the installed
- * equipment, 0 is returned to DOS as the error level to indicate
- * success. If not, then 1 is returned as the error level.
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1986
- *
- **/
-
- #include <stdlib.h>
-
- #include <bscreen.h>
- #include <bgenvid.h>
-
- int main(argc,argv)
- int argc;
- char **argv;
- {
- int mode,lines;
- int result;
- int fore,back;
- int have_fore = 0,have_back = 0;
-
- back = BLACK;
- fore = NORMAL;
- lines = 25;
- switch (argc)
- {
- default:
- case 5:
- if (back = atoi(argv[4]))
- have_back = 1;
- case 4:
- if (fore = atoi(argv[3]))
- have_fore = 1;
- case 3:
- if (0 == (lines = atoi(argv[2])))
- lines = 25;
- case 2:
- mode = atoi(argv[1]);
- if ((result = (scnewdev(mode,lines) != mode)) == 0)
- {
- if ( (have_fore || have_back)
- && (mode <= 3 || mode == 7)) /* Text mode */
- gvatrect(0,0,lines - 1,80,fore,back);
- sccurset(lines - 1,0); /* Lower left corner */
- }
- break;
- case 1:
- result = 0;
- }
-
- return result;
- }