home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c005 / 3.ddi / FONT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-05  |  3.0 KB  |  107 lines

  1. /**
  2. *
  3. *  FONT.C    Set Screen Mode and Font.
  4. *
  5. *  This program resets a video adapter, selects a font (either 25
  6. *  or 43 lines), and optionally fills the screen with a given
  7. *  display attribute.  The cursor is left at the lower left corner
  8. *  of the screen.
  9. *
  10. *  The command line format is as follows:
  11. *
  12. *    font mode lines foreground background
  13. *
  14. *  where "mode" is the display mode (0 to 16).  The screen is reset
  15. *        using this mode.  If the mode refers to another
  16. *        video device, that device is made current and reset.
  17. *     "Lines" is the number of text lines (25 or 43).  Forty-three
  18. *        line mode is only supported on the Enhanced Graphics
  19. *        Adapter (EGA) with the Monochrome Display or the
  20. *        Enhanced Color Display.
  21. *     "Foreground" is the foreground color (0 to 15) with which the
  22. *        screen is filled in text modes.
  23. *     "Background" is the background color (0 to 15) with which the
  24. *        screen is filled in text modes.
  25. *
  26. *  The command line may have one or more items omitted; if so, the
  27. *  remaining items are interpreted in the order specified.  The missing
  28. *  items are given the following default values:
  29. *
  30. *     "background" defaults to 0 (black);
  31. *     "foreground" defaults to 7 (normal);
  32. *     "lines"      defaults to 25.
  33. *
  34. *  For example,
  35. *
  36. *     font 3         selects 80x25 color text on a color display
  37. *                with normal attributes.
  38. *
  39. *     font 3 25 4        selects 80x25 color text mode.  Attributes
  40. *                are red on black.
  41. *
  42. *     font 3 43 15 6     selects 80x43 color text mode on an EGA with
  43. *                an Enhanced Color Display.    Attributes are
  44. *                intense white on brown.
  45. *
  46. *     font 7         selects 80x25 monochrome text mode.
  47. *
  48. *     font 7 43        selects 80x43 monochrome text mode on an EGA
  49. *                with a Monochrome Display.
  50. *
  51. *     font 15        selects 80x25 monochrome graphics mode on
  52. *                an EGA with a Monochrome Display.
  53. *
  54. *  If the mode and number of lines is supported by the installed
  55. *  equipment, 0 is returned to DOS as the error level to indicate
  56. *  success.  If not, then 1 is returned as the error level.
  57. *
  58. *  Version 3.0    (C)Copyright Blaise Computing Inc.  1986
  59. *
  60. **/
  61.  
  62. #include <stdlib.h>
  63.  
  64. #include <bscreen.h>
  65. #include <bgenvid.h>
  66.  
  67. int  main(argc,argv)
  68. int  argc;
  69. char **argv;
  70. {
  71.     int mode,lines;
  72.     int result;
  73.     int fore,back;
  74.     int have_fore = 0,have_back = 0;
  75.  
  76.     back  = BLACK;
  77.     fore  = NORMAL;
  78.     lines = 25;
  79.     switch (argc)
  80.     {
  81.     default:
  82.     case 5:
  83.         if (back = atoi(argv[4]))
  84.         have_back = 1;
  85.     case 4:
  86.         if (fore = atoi(argv[3]))
  87.         have_fore = 1;
  88.     case 3:
  89.         if (0 == (lines = atoi(argv[2])))
  90.         lines = 25;
  91.     case 2:
  92.         mode = atoi(argv[1]);
  93.         if ((result = (scnewdev(mode,lines) != mode)) == 0)
  94.         {
  95.         if (   (have_fore || have_back)
  96.             && (mode <= 3 || mode == 7))     /* Text mode */
  97.             gvatrect(0,0,lines - 1,80,fore,back);
  98.         sccurset(lines - 1,0);         /* Lower left corner     */
  99.         }
  100.         break;
  101.     case 1:
  102.         result = 0;
  103.     }
  104.  
  105.     return result;
  106. }
  107.