home *** CD-ROM | disk | FTP | other *** search
- #include <dos.h>
-
- get_key() /*& check keyboard and return char if found */
- {
- int ch;
-
- if(kbhit())
- return((ch=getch())?ch:128+getch());
- else /* $ if no key return 0 */
- return(0);
- }
-
-
- scr_curtype(int t) /*& set cursor shape */
- {
- union REGS rg;
-
- rg.h.ah=1;
- rg.x.cx=t;
-
- int86(16,&rg,&rg);
- }
-
- scr_rowcol(int r, int c) /*& position cursor at r,c */
- {
- union REGS rg;
-
- rg.h.ah=2;
- rg.x.bx=0;
- rg.x.dx=(r<<8)+c;
-
- int86(16,&rg,&rg);
- }
-
- scr_curson() /*& turn cursor on */
- {
- union REGS rg;
-
- rg.h.ah=15;
-
- int86(16,&rg,&rg); /* return video mode */
-
- if(rg.h.al==7)
- scr_curtype(0x0c0d);
- else
- scr_curtype(0x0607);
- }
-
- scr_cursoff() /*& turn cursor off */
- {
- scr_curtype(0x2000);
- }
-
- scr_clr() /*& clear the screen */
- {
- union REGS rg;
-
- scr_rowcol(0,0); /*$ position at top */
- rg.h.ah=9;
- rg.h.al=' ';
- rg.x.bx=7;
- rg.x.cx=2000; /*$ write 2000 blanks */
-
- int86(16,&rg,&rg);
- }
-
-