home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c005 / 1.ddi / BSCREEN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-05  |  9.3 KB  |  239 lines

  1. /**
  2. *
  3. *  BSCREEN.H   Header file for C TOOLS PLUS Screen Functions
  4. *
  5. *  Version 3.0    (C)Copyright Blaise Computing Inc.  1983, 1984, 1986
  6. *
  7. **/
  8.  
  9. #ifndef DEF_BSCREEN              /* Prevent redefinition.          */
  10.  
  11. #include <butility.h>
  12.  
  13. #define  NORMAL     7              /* Common attributes for the    */
  14. #define  REVERSE    112           /* Monochrome adapter to use    */
  15. #define  UNDERLINE  1              /* with SCSCROLL.           */
  16. #define  INTENSITY  8
  17. #define  MONOBLINK  128
  18.  
  19. #define  BLACK        0              /* (Byte) values representing   */
  20. #define  BLUE        1              /* color attributes.          */
  21. #define  GREEN        2
  22. #define  CYAN        3
  23. #define  RED        4
  24. #define  MAGENTA    5
  25. #define  BROWN        6
  26. #define  WHITE        7
  27.  
  28.     /* Maximum dimensions of usual PC screens (not EGA)           */
  29.  
  30. #define  PC_ROWS      25
  31. #define  PC_COLS      80
  32. #define  LAST_ROW     (PC_ROWS - 1)
  33. #define  LAST_COL     (PC_COLS - 1)
  34. #define  PC_BIG_ROWS  43
  35. #define  MAX_DEVICES  2           /* Color and/or monochrome      */
  36. #define  MAX_PAGES    8           /* Pages per video adapter      */
  37.                       /* (8 maximum on EGA)          */
  38.  
  39.     /* Scrolling directions                          */
  40.  
  41. #define  SCR_UP      0
  42. #define  SCR_DOWN    1
  43. #define  SCR_RIGHT   0
  44. #define  SCR_LEFT    1
  45.  
  46.     /* Options for SCPGCUR                          */
  47.  
  48. #define  CUR_ADJUST    1     /* Adjust cursor size into normal       */
  49.                   /* limits if appropriate              */
  50. #define  CUR_NO_ADJUST    0     /* Use requested cursor scan lines      */
  51.                   /* without any adjustment           */
  52.  
  53.     /* Options for SCRDBUF, SCWRBUF, and SCWRSTR              */
  54.  
  55. #define  CUR_BEG     0          /* Leave cursor at beginning of string. */
  56. #define  CUR_AFTER   1          /* Leave cursor after end of string.    */
  57.                   /*                      */
  58. #define  CHARS_ONLY  0          /* Buffer contains characters only.     */
  59. #define  CHAR_ATTR   2          /* Buffer contains (char,attr) pairs.   */
  60.                   /*                      */
  61. #define  MOVE_CUR    0          /* Leave cursor according to          */
  62.                   /*   CUR_BEG/CUR_AFTER bit.          */
  63. #define  NO_MOVE_CUR 4          /* Preserve cursor location.          */
  64.  
  65.     /* Symbols used by SCEQUIP to indicate the state of the various   */
  66.     /* video adapters                              */
  67.  
  68. #define  DONT_KNOW  (-1)      /* We haven't checked yet               */
  69. #define  ABSENT     (-2)
  70. #define  MONO        0
  71. #define  COLOR        1
  72.  
  73. #define  HIFUNC     2          /* PGC in high-function graphics mode   */
  74.                   /*   (not CGA emulation mode)          */
  75.  
  76.     /* Global variables set by SCEQUIP indicating installed video     */
  77.     /* hardware and switch settings                      */
  78.  
  79. extern int b_mdpa;          /* Monochrome Display & Printer Adapter */
  80.                   /*   DONT_KNOW, ABSENT, or MONO          */
  81.                   /*                      */
  82. extern int b_cga;          /* Color/Graphics Monitor Adapter       */
  83.                   /*   DONT_KNOW, ABSENT, or COLOR          */
  84.                   /*                      */
  85. extern int b_ega;          /* Enhanced Graphics Adapter          */
  86.                   /*   DONT_KNOW, ABSENT, MONO or COLOR   */
  87.                   /*                      */
  88. extern int b_pgc;          /* Professional Graphics Controller     */
  89.                   /*   DONT_KNOW, ABSENT, COLOR or HIFUNC */
  90.                   /*                      */
  91. extern int b_mem_ega;          /* Amount of memory installed on EGA in */
  92.                   /* 1024-byte units:  64, 128, 256       */
  93.                   /*                      */
  94. extern unsigned b_sw_ega;     /* Switch settings on EGA           */
  95.                   /* Low-order bit set means SW1 off, etc.*/
  96.                   /* (Bit value 1 implies that          */
  97.                   /* corresponding switch is off.)          */
  98.  
  99.     /* Global variables for managing multiple devices & display      **/
  100.     /* pages                                  */
  101.  
  102. extern int b_curpage;              /* Current display page          */
  103. extern int b_device;              /* Current adapter:  DONT_KNOW, */
  104.                       /*   MONO, or COLOR          */
  105.  
  106. extern int b_know_hw;              /* Flag stating whether we have */
  107.                       /* yet run SCEQUIP:  0 if no, 1 */
  108.                       /* if yes.              */
  109.  
  110. typedef struct                  /* CUR_TYPE structure:          */
  111. {                      /* high and low scan lines      */
  112.     int high,low;              /* in a cursor.              */
  113. } CUR_TYPE;
  114.  
  115.                       /* Cursor type for each display */
  116. extern CUR_TYPE b_curtype[MAX_DEVICES][MAX_PAGES];         /* page. */
  117.  
  118. extern int b_curoff[MAX_DEVICES][MAX_PAGES]; /* Cursor on/off state   */
  119.                          /* for each display page */
  120.  
  121. extern int b_curknown[MAX_DEVICES];   /* Internal flag:  zero means   */
  122.                       /* cooresponding row of          */
  123.                       /* _curtype[][] and _curoff[]   */
  124.                       /* are not yet initialized.     */
  125.  
  126.     /* Internal structures for preserving BIOS video variables          */
  127.  
  128. typedef struct
  129. {
  130.     int  known;               /* 1 if this structure has      */
  131.                       /*  valid data, 0 if not.       */
  132.     int  curpage;              /* Copy of _curpage.          */
  133.     char pc_area[30];              /* Standard PC/XT area.          */
  134.     int  reset_flag;              /* EGA reset flag.          */
  135.     char ega_area[5];              /* Some EGA data.           */
  136.     ADS  save_ptr;              /* Pointer to EGA variables.    */
  137.     char ega_status;              /* EGA status byte.          */
  138. } VIDEO_STATE;
  139. extern VIDEO_STATE b_adap_state[2];   /* One entry for MONO, one for  */
  140.                       /* COLOR.               */
  141.  
  142.     /* Function declarations                          */
  143.  
  144. char scequip(void);              /* Sense hardware environment   */
  145.                       /*                  */
  146. int  screset(int);              /* Reset the video mode          */
  147.                       /*                  */
  148. int  scchgdev(int);              /* Select adapter           */
  149.                       /*                  */
  150. int  scnewdev(int,int);           /* Reset and select 25 or 43    */
  151.                       /* line font              */
  152.                       /*                  */
  153. int  scmode(int *,int *,int*);          /* Return the video mode info   */
  154.                       /*                  */
  155. int  scrows(void);              /* Number of rows on screen     */
  156.                       /*                  */
  157. int  scpages(void);              /* Number of pages in this mode */
  158.                       /*                  */
  159. int  scpage(int);              /* Set the current display page */
  160.                       /*                  */
  161. int  scapage(int);              /* Display (activate) a page    */
  162.                       /*                  */
  163. int  scactpg(int);              /* Display (activate) a page    */
  164.                       /* and change cursor size.      */
  165.  
  166.                       /* Scroll text within a          */
  167.                       /* rectangular region:          */
  168.                       /*                  */
  169. int  scscroll(int,int,              /* Active  display page          */
  170.      int,int,int,int,int);          /*                  */
  171. int  scpscrol(int,int,              /* Current display page          */
  172.      int,int,int,int,int);          /*                  */
  173. int  schoriz(int,int,              /* Horizontally              */
  174.      int,int,int,int,int);          /*                  */
  175.  
  176. int  scclear(void);              /* Clear the active page          */
  177.                       /*                  */
  178. void scpclr(void);              /* Clear the current page       */
  179.                       /*                  */
  180. int  sccurset(int,int);           /* Set the cursor position      */
  181.                       /*                  */
  182. int  sccurpos(int *,int *);          /* Return the cursor position   */
  183.                       /*                  */
  184. int  scpgcur(int,int,int,int);          /* Alter the cursor size on     */
  185.                       /* current page.              */
  186.                       /*                  */
  187. int  sccursor(int,int,int);          /* Alter the cursor size on     */
  188.                       /* active (displayed) page.     */
  189.                       /*                  */
  190. int  sccurst(int *,int *,int *,int *);/* Return position & size of    */
  191.                       /* cursor on current page.      */
  192. char scread(int *,int *);          /* Read character and attribute */
  193.                       /*                  */
  194. int  scattrib(int,int,char,unsigned); /* Set the display attributes   */
  195.                       /*                  */
  196. int  scwrite(char,unsigned);          /* Write copies of a character  */
  197.                       /*                  */
  198. int  scttywrt(char,int);          /* Write character TTY-style    */
  199.                       /*                  */
  200. int  scdspmsg(int,int,int,int,char *);/* Display a message          */
  201.                       /*                  */
  202. int  scclrmsg(int,int,int);          /* Clear a message          */
  203.                       /*                  */
  204. int  scrdbuf(int,int,int,char *,int); /* Read a buffer from screen    */
  205.                       /*                  */
  206. int  scwrbuf(int,int,int,char *,      /* Write a buffer to screen     */
  207.      int,int,int);              /*                  */
  208.                       /*                  */
  209. int  scrdrect(int,int,int,int,          /* Read a rectangle from screen */
  210.      char *,int);              /*                  */
  211.                       /*                  */
  212. int  scatrect(int,int,int,int,          /* Change rectangle attributes  */
  213.      int,int);              /*                  */
  214.                       /*                  */
  215. int  scwrrect(int,int,int,int,          /* Write a rectangle to screen  */
  216.      char *,int,int,int);          /*                  */
  217.                       /*                  */
  218. void scwrstr(int,int,int,          /* Write a buffer to screen,    */
  219.      char *,int,int,int);          /* TTY-style              */
  220.                       /*                  */
  221. int  scbox(int,int,int,int,          /* Draw a box              */
  222.      int,char,int);           /*                  */
  223.                       /*                  */
  224. void scttywin(int,int,int,int,          /* Write character TTY-style to */
  225.      char,int,int,int,int);       /* rectangular region.          */
  226.                       /*                  */
  227. void scwrap(int,int,int,int,          /* Write to rectangular region  */
  228.      int,char *,int,int,int);     /* with word wrap           */
  229.  
  230.     /* Aliases for former names                       */
  231.  
  232. #define _curpage     b_curpage
  233.  
  234.  
  235. #define DEF_BSCREEN  1              /* Prevent second reading of    */
  236.                       /* these definitions.          */
  237.  
  238. #endif                      /* Ends "#ifndef DEF_BSCREEN"   */
  239.