📄 term.c
字号:
/*************************************************************************** * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne. JOVE * * is provided to you without charge, and with no warranty. You may give * * away copies of JOVE, including sources, provided that this notice is * * included in all the files. * ***************************************************************************/#include "jove.h"#include "fp.h"#include "disp.h"#include "ctype.h"#include <errno.h>#ifndef MAC /* most of the file... */# ifdef STDARGS# include <stdarg.h># else# include <varargs.h># endif#ifndef MSDOS# ifdef SYSV# include <termio.h># else# include <sgtty.h># endif /* SYSV */#endif /* MSDOS */#ifdef IPROCS# include <signal.h>#endif#include "termcap.h"/* Termcap definitions */#ifndef IBMPCchar *CS, *SO, *SE, *CM, *CL, *CE, *HO, *AL, *DL, *VS, *VE, *KS, *KE, *TI, *TE, *IC, *DC, *IM, *EI, *LL, *M_IC, /* Insert char with arg */ *M_DC, /* Delete char with arg */ *M_AL, /* Insert line with arg */ *M_DL, /* Delete line with arg */ *SF, /* Scroll forward */ *SR, *M_SF, /* Scroll forward with arg */ *M_SR, /* Scroll back with arg */ *SP, /* Send Cursor Position */ *VB, *BL, *IP, /* insert pad after character inserted */ *lPC, *NL, *DO;#endifint LI, ILI, /* Internal lines, i.e., 23 of LI is 24. */ CO, SG, /* number of magic cookies left by SO and SE */ UPlen, HOlen, LLlen;bool XS, /* whether standout is braindamaged */ Hazeltine, /* Hazeltine tilde kludge */ MI, UL, NP, TABS;#ifdef NEVER /* * Are you sure about this one Jon? On the SYSV system I tried this * on I got a multiple definition of PC because it was already * defined in -ltermcap. Similarly for BC and UP ... */# ifdef SYSVR2 /* release 2, at least */char PC;# endif /* SYSVR2 */#endif#ifndef IBMPCprivate char tspace[256];/* The ordering of ts and meas must agree !! */private const char ts[] = "vsvealdlspcssosecmclcehoupbcicimdceillsfsrvbksketiteALDLICDCpcipblnldoSFSR";private char **const meas[] = { &VS, &VE, &AL, &DL, &SP, &CS, &SO, &SE, &CM, &CL, &CE, &HO, &UP, &BC, &IC, &IM, &DC, &EI, &LL, &SF, &SR, &VB, &KS, &KE, &TI, &TE, &M_AL, &M_DL, &M_IC, &M_DC, &lPC, &IP, &BL, &NL, &DO, &M_SF, &M_SR, NULL};private voidTermError(){ flushscreen(); _exit(1);}voidgetTERM(){ char termbuf[13], *termname = NULL, *termp = tspace, tbuff[2048]; /* Good grief! */ const char *tsp = ts; int i; termname = getenv("TERM"); if ((termname == NULL) || (*termname == '\0') || (strcmp(termname, "dumb") == 0) || (strcmp(termname, "unknown") == 0) || (strcmp(termname, "network") == 0)) { putstr("Enter terminal type (e.g, vt100): "); flushscreen(); termbuf[read(0, (UnivPtr) termbuf, sizeof(termbuf)) - 1] = '\0'; if (termbuf[0] == '\0') TermError(); termname = termbuf; } if (tgetent(tbuff, termname) < 1) { writef("[\"%s\" unknown terminal type?]", termname); TermError(); } if ((CO = tgetnum("co")) == -1) {wimperr: writef("You can't run JOVE on a %s terminal.\n", termname); TermError(); /*NOTREACHED*/ } else if (CO > MAXCOLS) CO = MAXCOLS; if ((LI = tgetnum("li")) == -1) goto wimperr; if ((SG = tgetnum("sg")) == -1) SG = 0; /* Used for mode line only */ XS = tgetflag("xs")==TRUE; /* Used for mode line only */ Hazeltine = tgetflag("hz")==TRUE; /* Hazeltine tilde kludge */ NP = tgetflag("NP")==TRUE; /* no pad char flag */ for (i = 0; meas[i]; i++) { static char nm[3] = "xx"; nm[0] = *tsp++; nm[1] = *tsp++; *(meas[i]) = (char *) tgetstr(nm, &termp); if (termp > tspace + sizeof(tspace)) goto wimperr; } if (lPC) PC = *lPC; if (XS) SO = SE = NULL; if (CS && !SR) CS = SR = SF = M_SF = M_SR = NULL; if (CS && !SF) SF = "\n"; if (IM && (*IM == '\0')) IM = NULL; else MI = tgetflag("mi")==TRUE; UL = tgetflag("ul")==TRUE; if (NL == NULL) NL = "\n"; else { /* strip stupid padding information */ while (jisdigit(*NL)) NL += 1; if (*NL == '*') NL += 1; } if (!DO) DO = NL; if (BL == NULL) BL = "\007"; if (tgetflag("km") == TRUE) /* has meta-key */ MetaKey = ON;#ifdef ID_CHAR disp_opt_init();#endif if ((CanScroll = ((AL && DL) || CS)) != 0) IDline_setup(termname);}#else /* IBMPC */voidInitCM(){}bool EGA;voidgetTERM(){ char *getenv(), *tgetstr() ; char *termname; void init_43(), init_term(); unsigned char lpp(), chpl(); if (getenv("EGA") != NULL || (!stricmp(getenv("TERM"), "EGA"))) { termname = "ega"; init_43(); EGA = YES; } else { termname = "ibmpc"; init_term(); EGA = NO; } CO = chpl(); LI = lpp(); SG = 0; /* Used for mode line only */ XS = NO; /* Used for mode line only */ CanScroll = YES;}#endif /* IBMPC */#else /* MAC */int LI, ILI, /* Internal lines, i.e., 23 of LI is 24. */ CO, SG;bool TABS;void getTERM(){ SG = 0; CanScroll = YES;}#endif /* MAC *//* put a string with padding */#ifndef IBMPCprivate voidtputc(c)int c;{ jputchar(c);}#endif /* IBMPC */#ifndef MACvoidputpad(str, lines)char *str;int lines;{#ifndef IBMPC if (str) tputs(str, lines, tputc);#else /* IBMPC */ write_emif(str);#endif /* IBMPC */}voidputargpad(str, arg, lines)char *str;int arg, lines;{#ifndef IBMPC if (str) { tputs(#ifdef TERMINFO tparm(str, arg),#else /* TERMINFO */ tgoto(str, 0, arg), /* fudge */#endif /* TERMINFO */ lines, tputc); }#else /* IBMPC */ /* This code is only a guess: I don't know if any M_* termcap * attributes are defined for the PC. If they are not used, * this routine is not called. Perhaps this routine should * simply abort. */ if (str) { char buf[16]; /* hope that this is long enough */ swritef(buf, sizeof(buf), str, arg); /* hope only %d appears in str */ write_em(buf); }#endif /* IBMPC */}#endif /* MAC *//* Determine the number of characters to buffer at each baud rate. The lower the number, the quicker the response when new input arrives. Of course the lower the number, the more prone the program is to stop in output. Decide what matters most to you. This sets BufSize to the right number or chars, and initializes `stdout'. */voidsettout(ttbuf)char *ttbuf;{#ifdef UNIX static const int speeds[] = { 1, /* 0 */ 1, /* 50 */ 1, /* 75 */ 1, /* 110 */ 1, /* 134 */ 1, /* 150 */ 1, /* 200 */ 2, /* 300 */ 4, /* 600 */ 8, /* 1200 */ 16, /* 1800 */ 32, /* 2400 */ 128, /* 4800 */ 256, /* 9600 */ 512, /* EXTA */ 1024 /* EXT */ }; int speed_chars = speeds[ospeed];#else int speed_chars = 256;#endif flushscreen(); /* flush the one character buffer */ BufSize = min(MAXTTYBUF, speed_chars * max(LI / 24, 1)); stdout = fd_open("/dev/tty", F_WRITE|F_LOCKED, 1, ttbuf, BufSize);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -