home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG6_7.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  3.7 KB  |  144 lines

  1. /*Program 6_7 - Demonstrate Video Adapter Display Pages
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Many programmers forget that their display adapter has more
  5.   than it is showing them.  This program allows the programmer
  6.   to select through the display pages of their adapter.  It will
  7.   only work in color or BW 80 column mode - when running from DOS
  8.   it may require a CLS to reset the video controller completely.
  9. */
  10.  
  11. #include <stdio.h>
  12. #include <dos.h>
  13. #include <process.h>
  14. #include <conio.h>
  15.  
  16. /*prototype definitions*/
  17. void main (void);
  18. unsigned egapresent (void);
  19. void selectpage (unsigned);
  20. void fillpage (unsigned);
  21. unsigned getmode (void);
  22. void outstring (char *);
  23. void scroll (unsigned, unsigned);
  24.  
  25. /*global data definitions*/
  26. union REGS reg;
  27.  
  28. /*Main - Put data on each of the screens, then await user input
  29.          to select the "current" screen*/
  30. void main (void)
  31. {
  32.      unsigned i, no_pages;
  33.  
  34.      if ((getmode () & 0xfe) != 2) {
  35.           printf ("Must be in Color or BW 80 mode\n");
  36.           exit (1);
  37.      }
  38.  
  39.      /*CGA has 4 pages, EGA has 8*/
  40.      no_pages = 4;
  41.      if (egapresent ()) no_pages = 8;
  42.  
  43.      /*put something on each of the pages*/
  44.      for (i = 0; i < no_pages; i++) {
  45.           selectpage (i);
  46.           fillpage (i);
  47.      }
  48.  
  49.      /*no prompt the operator for input*/
  50.      selectpage (0);
  51.      printf ("Enter page number (>%d terminates):", no_pages);
  52.      for (;;) {
  53.           i =  (unsigned)(getche () - '0');
  54.           if (i > no_pages) {
  55.                selectpage (0);
  56.                exit (0);
  57.           }
  58.           selectpage (i);
  59.      }
  60. }
  61.  
  62. /*Egapresent - check for the presence of an EGA card*/
  63. unsigned egapresent (void)
  64. {
  65.      reg.h.ah = 0x12;
  66.      reg.h.bl = 0x10;
  67.      int86 (0x10, ®, ®);
  68.      if (reg.h.bl > 3)
  69.           return 0;
  70.      return 1;
  71. }
  72.  
  73. /*Getmode - return the current video mode*/
  74. unsigned getmode (void)
  75. {
  76.      reg.h.ah = 0x0f;
  77.      int86 (0x10, ®, ®);
  78.      return (unsigned)reg.h.al;
  79. }
  80.  
  81. /*Selectpage - select the video page*/
  82. void selectpage (page)
  83.      unsigned page;
  84. {
  85.      reg.h.ah = 5;
  86.      reg.h.al = page;
  87.      int86 (0x10, ®, ®);
  88. }
  89.  
  90. /*Fillpage - fill the current page with text*/
  91. char *strings [] = {
  92. "Page 0       Page 0         Page 0         Page 0         Page 0",
  93. "Page 1       Page 1         Page 1         Page 1         Page 1",
  94. "Page 2       Page 2         Page 2         Page 2         Page 2",
  95. "Page 3       Page 3         Page 3         Page 3         Page 3",
  96. "Page 4       Page 4         Page 4         Page 4         Page 4",
  97. "Page 5       Page 5         Page 5         Page 5         Page 5",
  98. "Page 6       Page 6         Page 6         Page 6         Page 6",
  99. "Page 7       Page 7         Page 7         Page 7         Page 7"};
  100.  
  101. void fillpage (page)
  102.      unsigned page;
  103. {
  104.      unsigned row;
  105.  
  106.      scroll (0, page);
  107.      for (row = 0; row < 25; row++) {
  108.           outstring (strings [page]);
  109.           scroll (1, page);
  110.      }
  111. }
  112.  
  113. /*Outstring - put a string on the current page*/
  114. void outstring (string)
  115.      char *string;
  116. {
  117.      while (*string) {
  118.           reg.h.ah = 0x0e;
  119.           reg.h.al = *string++;
  120.           int86 (0x10, ®, ®);
  121.      }
  122. }
  123.  
  124. /*Scroll - scroll the current screen up N lines*/
  125. void scroll (n, page)
  126.      unsigned n, page;
  127. {
  128.      reg.h.ah = 0x06;        /*scroll the current page N lines*/
  129.      reg.h.al = n;
  130.      reg.h.ch = 0;
  131.      reg.h.cl = 0;
  132.      reg.h.dh = 25;
  133.      reg.h.dl = 80;
  134.      reg.h.bh = page + 1;    /*make each page a different color*/
  135.      int86 (0x10, ®, ®);
  136.  
  137.      reg.h.ah = 0x02;        /*put cursor at bottom left hand corner*/
  138.      reg.h.dh = 25;
  139.      reg.h.dl = 0;
  140.      reg.h.bh = page;
  141.      int86 (0x10, ®, ®);
  142. }
  143.  
  144.