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

  1. /*Program 6_5 - Screen Output via BIOS calls
  2.    by Stephen R. Davis, 1987
  3.  
  4.   Perform screen output using BIOS calls.  This may not
  5.   be all that much faster than 'printf' output, since 'printf'
  6.   uses BIOS calls itself.
  7. */
  8.  
  9. #include <stdio.h>
  10. #include <dos.h>
  11.  
  12. #define white 0x07
  13. #define screenheight 25
  14.  
  15. /*add the screen BIOS subfunctions*/
  16. #define scrollup 0x06
  17. #define setcursor 0x02
  18. #define writetele 0x0e
  19. #define getmode 0x0f
  20.  
  21. /*define global variables*/
  22. unsigned v_pos, h_pos, screenwidth;
  23. union REGS regs;
  24.  
  25. /*prototype declarations*/
  26. void init (void);
  27. void scroll (unsigned);
  28. void qprintf (char *);
  29. void pcursor (unsigned, unsigned);
  30.  
  31. /*Main - test the output routines*/
  32. int main ()
  33. {
  34.     int i, j;
  35.  
  36.     init ();
  37.     for (i = 0; i < 20; i++) {
  38.          for (j = 0; j < screenheight; j++) {
  39.               qprintf ("this is BIOS output");
  40.               pcursor(v_pos, 30+j);
  41.               qprintf ("and this\n");
  42.          }
  43.          for (j = 0; j < screenheight; j++)
  44.               printf ("this is normal printf output\n");
  45.     }
  46. }
  47.  
  48. /*Init - clear the screen*/
  49. void init ()
  50. {
  51.     regs.h.ah = getmode;
  52.     int86 (0x10, ®s, ®s);
  53.     screenwidth = (unsigned)regs.h.ah;
  54.  
  55.     scroll (screenheight);
  56.     pcursor (0, 0);
  57. }
  58.  
  59. /*Scroll - scroll up N lines using function 6*/
  60. void scroll (nlines)
  61.     unsigned nlines;
  62. {
  63.     if (nlines >= screenheight)
  64.          nlines = screenheight;
  65.  
  66.     h_pos = 0;
  67.     if ((v_pos += nlines) >= screenheight) {
  68.          nlines = (v_pos - screenheight) + 1;
  69.          regs.h.ah = scrollup;
  70.          regs.h.al = nlines;
  71.          regs.h.bh = white;
  72.          regs.x.cx = 0;
  73.          regs.h.dh = screenheight;
  74.          regs.h.dl = screenwidth;
  75.          int86 (0x10, ®s, ®s);
  76.          v_pos = screenheight - 1;
  77.     }
  78. }
  79.  
  80. /*Qprintf - output a string using the BIOS screen handler.  If
  81.         an attribute is not provided, use the default.*/
  82. void qprintf (c)
  83.     char *c;
  84. {
  85.     for (; *c; c++)
  86.          if (*c == '\n')
  87.               scroll (1);
  88.          else {
  89.               if (h_pos++ < screenwidth) {
  90.                    regs.h.ah = writetele;
  91.                    regs.h.al = *c;
  92.                    int86 (0x10, ®s, ®s);
  93.               }
  94.          }
  95.     pcursor (v_pos, h_pos);
  96. }
  97.  
  98. /*PCursor - place the cursor at the current x and y location.
  99.             To place the cursor, and subsequent output, to any
  100.             arbitrary location, set 'v_pos' and 'h_pos' before
  101.             calling pcursor.*/
  102. void pcursor (y, x)
  103.     unsigned x, y;
  104. {
  105.     v_pos = y;
  106.     h_pos = x;
  107.  
  108.     regs.h.ah = setcursor;
  109.     regs.h.bh = 0;
  110.     regs.h.dh = v_pos;
  111.     regs.h.dl = h_pos;
  112.     int86 (0x10, ®s, ®s);
  113. }
  114.