home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BSCREEN.H Header file for C TOOLS PLUS Screen Functions
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1986
- *
- **/
-
- #ifndef DEF_BSCREEN /* Prevent redefinition. */
-
- #include <butility.h>
-
- #define NORMAL 7 /* Common attributes for the */
- #define REVERSE 112 /* Monochrome adapter to use */
- #define UNDERLINE 1 /* with SCSCROLL. */
- #define INTENSITY 8
- #define MONOBLINK 128
-
- #define BLACK 0 /* (Byte) values representing */
- #define BLUE 1 /* color attributes. */
- #define GREEN 2
- #define CYAN 3
- #define RED 4
- #define MAGENTA 5
- #define BROWN 6
- #define WHITE 7
-
- /* Maximum dimensions of usual PC screens (not EGA) */
-
- #define PC_ROWS 25
- #define PC_COLS 80
- #define LAST_ROW (PC_ROWS - 1)
- #define LAST_COL (PC_COLS - 1)
- #define PC_BIG_ROWS 43
- #define MAX_DEVICES 2 /* Color and/or monochrome */
- #define MAX_PAGES 8 /* Pages per video adapter */
- /* (8 maximum on EGA) */
-
- /* Scrolling directions */
-
- #define SCR_UP 0
- #define SCR_DOWN 1
- #define SCR_RIGHT 0
- #define SCR_LEFT 1
-
- /* Options for SCPGCUR */
-
- #define CUR_ADJUST 1 /* Adjust cursor size into normal */
- /* limits if appropriate */
- #define CUR_NO_ADJUST 0 /* Use requested cursor scan lines */
- /* without any adjustment */
-
- /* Options for SCRDBUF, SCWRBUF, and SCWRSTR */
-
- #define CUR_BEG 0 /* Leave cursor at beginning of string. */
- #define CUR_AFTER 1 /* Leave cursor after end of string. */
- /* */
- #define CHARS_ONLY 0 /* Buffer contains characters only. */
- #define CHAR_ATTR 2 /* Buffer contains (char,attr) pairs. */
- /* */
- #define MOVE_CUR 0 /* Leave cursor according to */
- /* CUR_BEG/CUR_AFTER bit. */
- #define NO_MOVE_CUR 4 /* Preserve cursor location. */
-
- /* Symbols used by SCEQUIP to indicate the state of the various */
- /* video adapters */
-
- #define DONT_KNOW (-1) /* We haven't checked yet */
- #define ABSENT (-2)
- #define MONO 0
- #define COLOR 1
-
- #define HIFUNC 2 /* PGC in high-function graphics mode */
- /* (not CGA emulation mode) */
-
- /* Global variables set by SCEQUIP indicating installed video */
- /* hardware and switch settings */
-
- extern int b_mdpa; /* Monochrome Display & Printer Adapter */
- /* DONT_KNOW, ABSENT, or MONO */
- /* */
- extern int b_cga; /* Color/Graphics Monitor Adapter */
- /* DONT_KNOW, ABSENT, or COLOR */
- /* */
- extern int b_ega; /* Enhanced Graphics Adapter */
- /* DONT_KNOW, ABSENT, MONO or COLOR */
- /* */
- extern int b_pgc; /* Professional Graphics Controller */
- /* DONT_KNOW, ABSENT, COLOR or HIFUNC */
- /* */
- extern int b_mem_ega; /* Amount of memory installed on EGA in */
- /* 1024-byte units: 64, 128, 256 */
- /* */
- extern unsigned b_sw_ega; /* Switch settings on EGA */
- /* Low-order bit set means SW1 off, etc.*/
- /* (Bit value 1 implies that */
- /* corresponding switch is off.) */
-
- /* Global variables for managing multiple devices & display **/
- /* pages */
-
- extern int b_curpage; /* Current display page */
- extern int b_device; /* Current adapter: DONT_KNOW, */
- /* MONO, or COLOR */
-
- extern int b_know_hw; /* Flag stating whether we have */
- /* yet run SCEQUIP: 0 if no, 1 */
- /* if yes. */
-
- typedef struct /* CUR_TYPE structure: */
- { /* high and low scan lines */
- int high,low; /* in a cursor. */
- } CUR_TYPE;
-
- /* Cursor type for each display */
- extern CUR_TYPE b_curtype[MAX_DEVICES][MAX_PAGES]; /* page. */
-
- extern int b_curoff[MAX_DEVICES][MAX_PAGES]; /* Cursor on/off state */
- /* for each display page */
-
- extern int b_curknown[MAX_DEVICES]; /* Internal flag: zero means */
- /* cooresponding row of */
- /* _curtype[][] and _curoff[] */
- /* are not yet initialized. */
-
- /* Internal structures for preserving BIOS video variables */
-
- typedef struct
- {
- int known; /* 1 if this structure has */
- /* valid data, 0 if not. */
- int curpage; /* Copy of _curpage. */
- char pc_area[30]; /* Standard PC/XT area. */
- int reset_flag; /* EGA reset flag. */
- char ega_area[5]; /* Some EGA data. */
- ADS save_ptr; /* Pointer to EGA variables. */
- char ega_status; /* EGA status byte. */
- } VIDEO_STATE;
- extern VIDEO_STATE b_adap_state[2]; /* One entry for MONO, one for */
- /* COLOR. */
-
- /* Function declarations */
-
- char scequip(void); /* Sense hardware environment */
- /* */
- int screset(int); /* Reset the video mode */
- /* */
- int scchgdev(int); /* Select adapter */
- /* */
- int scnewdev(int,int); /* Reset and select 25 or 43 */
- /* line font */
- /* */
- int scmode(int *,int *,int*); /* Return the video mode info */
- /* */
- int scrows(void); /* Number of rows on screen */
- /* */
- int scpages(void); /* Number of pages in this mode */
- /* */
- int scpage(int); /* Set the current display page */
- /* */
- int scapage(int); /* Display (activate) a page */
- /* */
- int scactpg(int); /* Display (activate) a page */
- /* and change cursor size. */
-
- /* Scroll text within a */
- /* rectangular region: */
- /* */
- int scscroll(int,int, /* Active display page */
- int,int,int,int,int); /* */
- int scpscrol(int,int, /* Current display page */
- int,int,int,int,int); /* */
- int schoriz(int,int, /* Horizontally */
- int,int,int,int,int); /* */
-
- int scclear(void); /* Clear the active page */
- /* */
- void scpclr(void); /* Clear the current page */
- /* */
- int sccurset(int,int); /* Set the cursor position */
- /* */
- int sccurpos(int *,int *); /* Return the cursor position */
- /* */
- int scpgcur(int,int,int,int); /* Alter the cursor size on */
- /* current page. */
- /* */
- int sccursor(int,int,int); /* Alter the cursor size on */
- /* active (displayed) page. */
- /* */
- int sccurst(int *,int *,int *,int *);/* Return position & size of */
- /* cursor on current page. */
- char scread(int *,int *); /* Read character and attribute */
- /* */
- int scattrib(int,int,char,unsigned); /* Set the display attributes */
- /* */
- int scwrite(char,unsigned); /* Write copies of a character */
- /* */
- int scttywrt(char,int); /* Write character TTY-style */
- /* */
- int scdspmsg(int,int,int,int,char *);/* Display a message */
- /* */
- int scclrmsg(int,int,int); /* Clear a message */
- /* */
- int scrdbuf(int,int,int,char *,int); /* Read a buffer from screen */
- /* */
- int scwrbuf(int,int,int,char *, /* Write a buffer to screen */
- int,int,int); /* */
- /* */
- int scrdrect(int,int,int,int, /* Read a rectangle from screen */
- char *,int); /* */
- /* */
- int scatrect(int,int,int,int, /* Change rectangle attributes */
- int,int); /* */
- /* */
- int scwrrect(int,int,int,int, /* Write a rectangle to screen */
- char *,int,int,int); /* */
- /* */
- void scwrstr(int,int,int, /* Write a buffer to screen, */
- char *,int,int,int); /* TTY-style */
- /* */
- int scbox(int,int,int,int, /* Draw a box */
- int,char,int); /* */
- /* */
- void scttywin(int,int,int,int, /* Write character TTY-style to */
- char,int,int,int,int); /* rectangular region. */
- /* */
- void scwrap(int,int,int,int, /* Write to rectangular region */
- int,char *,int,int,int); /* with word wrap */
-
- /* Aliases for former names */
-
- #define _curpage b_curpage
-
-
- #define DEF_BSCREEN 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BSCREEN" */