home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / c / ibmcur.doc < prev    next >
Text File  |  1994-03-07  |  2KB  |  41 lines

  1.  
  2. The PC/IX routines which generate console output operate rather slowly due
  3. to the extensive terminal emulation performed, and the narrow time window
  4. which the color display affords for updating (vertical retrace period).
  5.  
  6. These routines operate up to ten times faster, and are useful for
  7. user-intensive interactive programs (such as editors, etc.).
  8.  
  9. The programs, ibmcur, and ibmprt, set the cursor and print characters
  10. directly in the display's screen memory.  Additionally, the programs
  11. Savescrn and Restscrn save the screen buffer and restore it, so that
  12. you can pop up menus or windows and restore the screen when removing
  13. them (without redrawing the whole screen).
  14.  
  15. Readers of the code will get a good idea of how to construct "C"
  16. programs which use assembly inserts to directly access data outside
  17. of the allocated 64K data segment.
  18.  
  19. Before you start using any of these routines, you must issue a
  20. printf("\f") call to ensure that the screen buffer on the display
  21. card points to the beginning of the buffer (as it scrolls it drifts
  22. down in memory, and would confuse the submitted programs).
  23.  
  24. ibmprt operates fast because there is no parsing of the print string
  25. (other than for the ending nul).  Do not give it new-lines or terminal
  26. emulation stuff;  reserve those for the regular slower printf.  ibmprt
  27. will leave the attribute bytes alone.
  28.  
  29. To print formatted stuff, use sprintf before ibmprt.  For example,
  30.  
  31.     char s[80];
  32.     int numth = 33;
  33.     ibmcur(10,20);          /* use line 10, column 20 */
  34.     sprintf(s,"This is the %d number", numth);
  35.     ibmprt(s);
  36.  
  37. You may wish to change the screen buffer pointer if you are using other than
  38. the color display card.
  39.  
  40. The "C" compiler may have to be run without the -O flag.
  41.