home *** CD-ROM | disk | FTP | other *** search
- /*Program 6_7 - Demonstrate Video Adapter Display Pages
- by Stephen R. Davis, 1987
-
- Many programmers forget that their display adapter has more
- than it is showing them. This program allows the programmer
- to select through the display pages of their adapter. It will
- only work in color or BW 80 column mode - when running from DOS
- it may require a CLS to reset the video controller completely.
- */
-
- #include <stdio.h>
- #include <dos.h>
- #include <process.h>
- #include <conio.h>
-
- /*prototype definitions*/
- void main (void);
- unsigned egapresent (void);
- void selectpage (unsigned);
- void fillpage (unsigned);
- unsigned getmode (void);
- void outstring (char *);
- void scroll (unsigned, unsigned);
-
- /*global data definitions*/
- union REGS reg;
-
- /*Main - Put data on each of the screens, then await user input
- to select the "current" screen*/
- void main (void)
- {
- unsigned i, no_pages;
-
- if ((getmode () & 0xfe) != 2) {
- printf ("Must be in Color or BW 80 mode\n");
- exit (1);
- }
-
- /*CGA has 4 pages, EGA has 8*/
- no_pages = 4;
- if (egapresent ()) no_pages = 8;
-
- /*put something on each of the pages*/
- for (i = 0; i < no_pages; i++) {
- selectpage (i);
- fillpage (i);
- }
-
- /*no prompt the operator for input*/
- selectpage (0);
- printf ("Enter page number (>%d terminates):", no_pages);
- for (;;) {
- i = (unsigned)(getche () - '0');
- if (i > no_pages) {
- selectpage (0);
- exit (0);
- }
- selectpage (i);
- }
- }
-
- /*Egapresent - check for the presence of an EGA card*/
- unsigned egapresent (void)
- {
- reg.h.ah = 0x12;
- reg.h.bl = 0x10;
- int86 (0x10, ®, ®);
- if (reg.h.bl > 3)
- return 0;
- return 1;
- }
-
- /*Getmode - return the current video mode*/
- unsigned getmode (void)
- {
- reg.h.ah = 0x0f;
- int86 (0x10, ®, ®);
- return (unsigned)reg.h.al;
- }
-
- /*Selectpage - select the video page*/
- void selectpage (page)
- unsigned page;
- {
- reg.h.ah = 5;
- reg.h.al = page;
- int86 (0x10, ®, ®);
- }
-
- /*Fillpage - fill the current page with text*/
- char *strings [] = {
- "Page 0 Page 0 Page 0 Page 0 Page 0",
- "Page 1 Page 1 Page 1 Page 1 Page 1",
- "Page 2 Page 2 Page 2 Page 2 Page 2",
- "Page 3 Page 3 Page 3 Page 3 Page 3",
- "Page 4 Page 4 Page 4 Page 4 Page 4",
- "Page 5 Page 5 Page 5 Page 5 Page 5",
- "Page 6 Page 6 Page 6 Page 6 Page 6",
- "Page 7 Page 7 Page 7 Page 7 Page 7"};
-
- void fillpage (page)
- unsigned page;
- {
- unsigned row;
-
- scroll (0, page);
- for (row = 0; row < 25; row++) {
- outstring (strings [page]);
- scroll (1, page);
- }
- }
-
- /*Outstring - put a string on the current page*/
- void outstring (string)
- char *string;
- {
- while (*string) {
- reg.h.ah = 0x0e;
- reg.h.al = *string++;
- int86 (0x10, ®, ®);
- }
- }
-
- /*Scroll - scroll the current screen up N lines*/
- void scroll (n, page)
- unsigned n, page;
- {
- reg.h.ah = 0x06; /*scroll the current page N lines*/
- reg.h.al = n;
- reg.h.ch = 0;
- reg.h.cl = 0;
- reg.h.dh = 25;
- reg.h.dl = 80;
- reg.h.bh = page + 1; /*make each page a different color*/
- int86 (0x10, ®, ®);
-
- reg.h.ah = 0x02; /*put cursor at bottom left hand corner*/
- reg.h.dh = 25;
- reg.h.dl = 0;
- reg.h.bh = page;
- int86 (0x10, ®, ®);
- }
-