home *** CD-ROM | disk | FTP | other *** search
- /*Prg7_3 - Save the screen area to disk and recall it
- by Stephen R. Davis, 1987
-
- The user screen can be saved off to disk to be recalled
- at a later time. The effect is almost instantaneous as the
- example program demonstrates. This program must be compiled
- under the compact or large memory models.
- */
-
- #include <stdio.h>
- #include <io.h>
- #include <process.h>
- #include <dos.h>
- #include <fcntl.h>
- #include <stat.h>
- extern char *sys_errlist [];
- extern int errno;
-
- /*define screen related constants*/
- #define cga (unsigned far *)0xb8000000
- #define mono (unsigned far *)0xb0000000
- #define screenheight 25
-
- /*prototyping definitions*/
- void main (void);
- void init (void);
- void errexit (void);
- void pattern (char, unsigned);
- char gtcr (char *);
-
- /*define global variables*/
- unsigned far *screen, size, screenwidth;
- union REGS regs;
- char *fname = {"screen.sav"};
- unsigned waccess = {O_RDWR | O_CREAT | O_TRUNC | O_BINARY};
- unsigned raccess = {O_RDONLY | O_BINARY};
- unsigned normfile = S_IWRITE | S_IREAD;
-
- /*make sure that we are in the compact or large memory model*/
- #if (sizeof (int far *) - sizeof (int *))
- #error Compile with compact or large memory model!
- #endif
-
-
- /*Main - save the screen directly to disk and recall it*/
- void main ()
- {
- int handle;
-
- init ();
- pattern ('0', 10);
- if ((handle = open (fname, waccess, normfile)) == -1) {
- printf ("error opening 'screen'\n");
- errexit ();
- }
- gtcr ("Press any key to save number screen to disk\n"
- "and copy over with a character screen\n");
-
- if (size != write (handle, (void *)screen, size)) {
- printf ("error writing 'screen'\n");
- errexit ();
- }
- close (handle);
- pattern ('a', 26);
-
- gtcr ("Press any key to read character number "
- "screen back from disk");
- if ((handle = open (fname, raccess)) == -1) {
- printf ("error reopening 'screen'\n");
- errexit ();
- }
- read (handle, (void *)screen, size);
- exit (0);
- }
-
- /*Init - initialize screen pointer and width*/
- void init ()
- {
- regs.h.ah = 0x0f; /*get mode*/
- int86 (0x10, ®s, ®s);
- screenwidth = regs.h.ah;
- size = screenwidth * screenheight * sizeof (*screen);
-
- if (regs.h.al == 7)
- screen = mono;
- else
- screen = cga;
- }
-
- /*Gtcr - display a prompt and fetch character response*/
- char gtcr (prompt)
- char *prompt;
- {
- printf (prompt);
- return (char)getchar ();
- }
-
- /*Errexit - display disk error*/
- void errexit ()
- {
- printf ("DOS error: %s\n", sys_errlist [errno]);
- exit (1);
- }
-
- /*Pattern - fill screen with an incrementing pattern*/
- void pattern (c, modulo)
- char c;
- unsigned modulo;
- {
- unsigned i, j;
- char tchar;
-
- for (j = 0; j < (screenheight - 1); j++) {
- tchar = c + (char)(j % modulo);
- for (i = 1; i < screenwidth; i++) {
- printf ("%c", tchar);
- if ((++tchar - c) >= modulo)
- tchar = c;
- }
- printf ("\n");
- }
- }
-