home *** CD-ROM | disk | FTP | other *** search
- /* RUN/C SCREEN FUNCTIONS
- for IBM PC and PC clones
-
- Functions: cls() (clear screen)
- locate() (move cursor or report its position)
-
-
- Note: This source code is provided by Age of Reason, Inc.
- for information only. AofR guarantees neither correctness
- nor support. Nevertheless, having disclaimed all that is
- necessary, we will be happy to provide advice and would
- appreciate any bug reports.
-
- Note: These functions make use of the IBM PC BIOS video
- call (function 10H). To call the BIOS, Lattice C
- provides a function called int86(), which is used
- in the fucntions below. If you are not using Lattice,
- then you must find a replacement for this function.
-
-
- Function Descriptions:
-
- -------------------------------------------------
- cls() clears screen
- -------------------------------------------------
- int locate(row, column, mode)
- int row, column, mode;
-
- if mode == 0: move cursor to (row, column)
- this is an absolute move
- 1 <= row <= 25
- 1 <= column <= 80
- no action if target position outside
- screen area.
- if mode == 1: change cursor by (row, column)
- this is a relative move
- -24 <= row <= 24
- -79 <= column <= 79
- no action if target position outside
- screen area.
- if mode == 2: return current cursor row
- (input row and column args irrelevant)
- if mode == 3: return current cursor column
- (input row and column args irrelevant)
-
- row and column numbering starts at 1
- namely, (1,1) is upper-left
- size of screen is governed by MAXROW and MAXCOLUMN.
- -----------------------------------------------------------
- */
-
- #define MAXROW 25
- #define MAXCOLUMN 80
-
- /* the following are structures necessary to use the int86() call */
-
- struct XREG
- {
- short ax,bx,cx,dx,si,di;
- };
-
- struct HREG
- {
- char al,ah,bl,bh,cl,ch,dl,dh;
- };
-
- union REGS
- {
- struct XREG x;
- struct HREG h;
- };
-
-
- cls() /* clear screen */
- {union REGS r;
-
- /* set up registers for BIOS video call */
- r.h.ah = 6; /* scroll screen */
- r.h.al = 0; /* scroll entire window */
- r.h.bh = 7; /* char attribute = NORMAL or BLACK */
- r.x.cx = 0; /* top-left corner of window = (0,0) */
- r.h.dl = 79;
- r.h.dh = 24; /* bottom-right corner of window = (25, 80) */
- int86(0x10, &r, &r); /* scroll window into bit bucket */
- r.h.ah = 2; /* set cursor position */
- r.h.bh = r.x.dx = 0;
- int86(0x10, &r, &r); /* move cursor to upper-left */
- }
-
- int locate(row, column, mode) /* get or set cursor position */
- int row, column, mode;
- {
- switch(mode)
- { case 0: loc_amove(row, column);
- break;
- case 1: loc_dmove(row, column);
- break;
- case 2: loc_where(&row, &column);
- return(row);
- case 3: loc_where(&row, &column);
- return(column);
- }
- }
-
- loc_where(prow, pcolumn) /* return cursor position */
- int *prow, *pcolumn;
- {union REGS r;
-
- r.h.ah = 3; /* read cursor position */
- r.h.bh = 0; /* select page 0 */
- int86(0x10, &r, &r); /* make video call */
- *prow = r.h.dh + 1; /* add offset of 1 for upper-left = (1,1) */
- *pcolumn = r.h.dl + 1;
- }
-
- loc_amove(row, column) /* absolute cursor move */
- int row, column;
- {union REGS r;
-
- if (row < 1 || row > MAXROW || column < 1 || column > MAXCOLUMN)
- return;
- r.h.ah = 2; /* set cursor position */
- r.h.bh = 0; /* select page 0 */
- r.h.dh = row - 1;
- r.h.dl = column - 1;
- int86(0x10, &r, &r);
- }
-
- loc_dmove(drow, dcolumn) /* relaitve cursor move */
- int drow, dcolumn;
- {int currrow, currcolumn;
-
- loc_where(&currrow, &currcolumn);
- loc_amove(currrow+drow, currcolumn+dcolumn);
- }