NetBSD/games/hack/hack.termcap.c

318 lines
5.6 KiB
C
Raw Normal View History

/* $NetBSD: hack.termcap.c,v 1.9 1999/10/04 23:27:01 lukem Exp $ */
1997-10-19 20:56:41 +04:00
/*
* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
*/
1997-10-19 20:56:41 +04:00
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: hack.termcap.c,v 1.9 1999/10/04 23:27:01 lukem Exp $");
1997-10-19 20:56:41 +04:00
#endif /* not lint */
1993-03-21 12:45:37 +03:00
#include <string.h>
1995-04-29 05:08:51 +04:00
#include <termios.h>
1997-10-19 20:56:41 +04:00
#include <termcap.h>
#include <stdlib.h>
#include "hack.h"
#include "extern.h"
#include "def.flag.h" /* for flags.nonull */
1993-03-21 12:45:37 +03:00
1997-10-19 20:56:41 +04:00
static char tbuf[512];
static char *HO, *CL, *CE, *UP, *CM, *ND, *XD, *BC, *SO, *SE, *TI, *TE;
static char *VS, *VE;
static int SG;
static char PC = '\0';
char *CD; /* tested in pri.c: docorner() */
int CO, LI; /* used in pri.c and whatis.c */
1993-03-21 12:45:37 +03:00
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
startup()
{
1997-10-19 20:56:41 +04:00
char *term;
char *tptr;
char *tbufptr, *pc;
1993-03-21 12:45:37 +03:00
tptr = (char *) alloc(1024);
tbufptr = tbuf;
1997-10-19 20:56:41 +04:00
if (!(term = getenv("TERM")))
1993-03-21 12:45:37 +03:00
error("Can't get TERM.");
1997-10-19 20:56:41 +04:00
if (!strncmp(term, "5620", 4))
1993-03-21 12:45:37 +03:00
flags.nonull = 1; /* this should be a termcap flag */
1997-10-19 20:56:41 +04:00
if (tgetent(tptr, term) < 1)
1993-03-21 12:45:37 +03:00
error("Unknown terminal type: %s.", term);
1997-10-19 20:56:41 +04:00
if ((pc = tgetstr("pc", &tbufptr)) != NULL)
1993-03-21 12:45:37 +03:00
PC = *pc;
1997-10-19 20:56:41 +04:00
if (!(BC = tgetstr("bc", &tbufptr))) {
if (!tgetflag("bs"))
1993-03-21 12:45:37 +03:00
error("Terminal must backspace.");
BC = tbufptr;
tbufptr += 2;
*BC = '\b';
}
HO = tgetstr("ho", &tbufptr);
CO = tgetnum("co");
LI = tgetnum("li");
1997-10-19 20:56:41 +04:00
if (CO < COLNO || LI < ROWNO + 2)
1993-03-21 12:45:37 +03:00
setclipped();
1997-10-19 20:56:41 +04:00
if (!(CL = tgetstr("cl", &tbufptr)))
1993-03-21 12:45:37 +03:00
error("Hack needs CL.");
ND = tgetstr("nd", &tbufptr);
1997-10-19 20:56:41 +04:00
if (tgetflag("os"))
1993-03-21 12:45:37 +03:00
error("Hack can't have OS.");
CE = tgetstr("ce", &tbufptr);
UP = tgetstr("up", &tbufptr);
1997-10-19 20:56:41 +04:00
/*
* It seems that xd is no longer supported, and we should use a
* linefeed instead; unfortunately this requires resetting CRMOD, and
* many output routines will have to be modified slightly. Let's
* leave that till the next release.
*/
1993-03-21 12:45:37 +03:00
XD = tgetstr("xd", &tbufptr);
1997-10-19 20:56:41 +04:00
/* not: XD = tgetstr("do", &tbufptr); */
if (!(CM = tgetstr("cm", &tbufptr))) {
if (!UP && !HO)
1993-03-21 12:45:37 +03:00
error("Hack needs CM or UP or HO.");
printf("Playing hack on terminals without cm is suspect...\n");
getret();
}
SO = tgetstr("so", &tbufptr);
SE = tgetstr("se", &tbufptr);
SG = tgetnum("sg"); /* -1: not fnd; else # of spaces left by so */
1997-10-19 20:56:41 +04:00
if (!SO || !SE || (SG > 0))
SO = SE = 0;
1993-03-21 12:45:37 +03:00
CD = tgetstr("cd", &tbufptr);
1997-10-19 20:56:41 +04:00
set_whole_screen(); /* uses LI and CD */
if (tbufptr - tbuf > sizeof(tbuf))
error("TERMCAP entry too big...\n");
1993-03-21 12:45:37 +03:00
free(tptr);
}
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
start_screen()
{
xputs(TI);
xputs(VS);
}
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
end_screen()
{
xputs(VE);
xputs(TE);
}
/* Cursor movements */
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
curs(x, y)
1997-10-19 20:56:41 +04:00
int x, y; /* not xchar: perhaps xchar is unsigned and
* curx-x would be unsigned as well */
1993-03-21 12:45:37 +03:00
{
if (y == cury && x == curx)
return;
1997-10-19 20:56:41 +04:00
if (!ND && (curx != x || x <= 3)) { /* Extremely primitive */
cmov(x, y); /* bunker!wtm */
1993-03-21 12:45:37 +03:00
return;
}
1997-10-19 20:56:41 +04:00
if (abs(cury - y) <= 3 && abs(curx - x) <= 3)
1993-03-21 12:45:37 +03:00
nocmov(x, y);
1997-10-19 20:56:41 +04:00
else if ((x <= 3 && abs(cury - y) <= 3) || (!CM && x < abs(curx - x))) {
1993-03-21 12:45:37 +03:00
(void) putchar('\r');
curx = 1;
nocmov(x, y);
1997-10-19 20:56:41 +04:00
} else if (!CM) {
1993-03-21 12:45:37 +03:00
nocmov(x, y);
} else
cmov(x, y);
}
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
nocmov(x, y)
1997-10-19 20:56:41 +04:00
int x, y;
1993-03-21 12:45:37 +03:00
{
if (cury > y) {
1997-10-19 20:56:41 +04:00
if (UP) {
1993-03-21 12:45:37 +03:00
while (cury > y) { /* Go up. */
xputs(UP);
cury--;
}
1997-10-19 20:56:41 +04:00
} else if (CM) {
1993-03-21 12:45:37 +03:00
cmov(x, y);
1997-10-19 20:56:41 +04:00
} else if (HO) {
1993-03-21 12:45:37 +03:00
home();
curs(x, y);
1997-10-19 20:56:41 +04:00
} /* else impossible("..."); */
1993-03-21 12:45:37 +03:00
} else if (cury < y) {
1997-10-19 20:56:41 +04:00
if (XD) {
while (cury < y) {
1993-03-21 12:45:37 +03:00
xputs(XD);
cury++;
}
1997-10-19 20:56:41 +04:00
} else if (CM) {
1993-03-21 12:45:37 +03:00
cmov(x, y);
} else {
1997-10-19 20:56:41 +04:00
while (cury < y) {
1993-03-21 12:45:37 +03:00
xputc('\n');
curx = 1;
cury++;
}
}
}
if (curx < x) { /* Go to the right. */
1997-10-19 20:56:41 +04:00
if (!ND)
cmov(x, y);
else /* bah */
1993-03-21 12:45:37 +03:00
/* should instead print what is there already */
1997-10-19 20:56:41 +04:00
while (curx < x) {
xputs(ND);
curx++;
}
1993-03-21 12:45:37 +03:00
} else if (curx > x) {
while (curx > x) { /* Go to the left. */
xputs(BC);
curx--;
}
}
}
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
cmov(x, y)
1997-10-19 20:56:41 +04:00
int x, y;
1993-03-21 12:45:37 +03:00
{
1997-10-19 20:56:41 +04:00
xputs(tgoto(CM, x - 1, y - 1));
1993-03-21 12:45:37 +03:00
cury = y;
curx = x;
}
int
1997-10-19 20:56:41 +04:00
xputc(c)
char c;
{
return (fputc(c, stdout));
1993-03-21 12:45:37 +03:00
}
1997-10-19 20:56:41 +04:00
void
xputs(s)
char *s;
{
1993-03-21 12:45:37 +03:00
tputs(s, 1, xputc);
}
1997-10-19 20:56:41 +04:00
void
cl_end()
{
if (CE)
1993-03-21 12:45:37 +03:00
xputs(CE);
1997-10-19 20:56:41 +04:00
else { /* no-CE fix - free after Harold Rynes */
/*
* this looks terrible, especially on a slow terminal but is
* better than nothing
*/
int cx = curx, cy = cury;
1993-03-21 12:45:37 +03:00
1997-10-19 20:56:41 +04:00
while (curx < COLNO) {
1993-03-21 12:45:37 +03:00
xputc(' ');
curx++;
}
curs(cx, cy);
}
}
1997-10-19 20:56:41 +04:00
void
clear_screen()
{
1993-03-21 12:45:37 +03:00
xputs(CL);
curx = cury = 1;
}
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
home()
{
1997-10-19 20:56:41 +04:00
if (HO)
1993-03-21 12:45:37 +03:00
xputs(HO);
1997-10-19 20:56:41 +04:00
else if (CM)
1993-03-21 12:45:37 +03:00
xputs(tgoto(CM, 0, 0));
else
curs(1, 1); /* using UP ... */
curx = cury = 1;
}
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
standoutbeg()
{
1997-10-19 20:56:41 +04:00
if (SO)
xputs(SO);
1993-03-21 12:45:37 +03:00
}
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
standoutend()
{
1997-10-19 20:56:41 +04:00
if (SE)
xputs(SE);
1993-03-21 12:45:37 +03:00
}
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
backsp()
{
xputs(BC);
curx--;
}
1997-10-19 20:56:41 +04:00
void
1993-03-21 12:45:37 +03:00
bell()
{
1997-10-19 20:56:41 +04:00
(void) putchar('\007'); /* curx does not change */
1993-03-21 12:45:37 +03:00
(void) fflush(stdout);
}
1997-10-19 20:56:41 +04:00
void
delay_output()
{
1993-03-21 12:45:37 +03:00
/* delay 50 ms - could also use a 'nap'-system call */
1997-10-19 20:56:41 +04:00
/*
* BUG: if the padding character is visible, as it is on the 5620
* then this looks terrible.
*/
if (!flags.nonull)
1993-03-21 12:45:37 +03:00
tputs("50", 1, xputc);
1997-10-19 20:56:41 +04:00
/* cbosgd!cbcephus!pds for SYS V R2 */
/* is this terminfo, or what? */
/* tputs("$<50>", 1, xputc); */
1993-03-21 12:45:37 +03:00
1997-10-19 20:56:41 +04:00
else if (ospeed > 0)
if (CM) {
/*
* delay by sending cm(here) an appropriate number of
* times
*/
int cmlen = strlen(tgoto(CM, curx - 1, cury - 1));
int i = (ospeed + (100 * cmlen)) / (200 * cmlen);
1993-03-21 12:45:37 +03:00
1997-10-19 20:56:41 +04:00
while (i > 0) {
cmov(curx, cury);
}
1993-03-21 12:45:37 +03:00
}
}
1997-10-19 20:56:41 +04:00
void
cl_eos()
{ /* free after Robert Viduya *//* must only be
* called with curx = 1 */
1993-03-21 12:45:37 +03:00
1997-10-19 20:56:41 +04:00
if (CD)
1993-03-21 12:45:37 +03:00
xputs(CD);
else {
1997-10-19 20:56:41 +04:00
int cx = curx, cy = cury;
while (cury <= LI - 2) {
1993-03-21 12:45:37 +03:00
cl_end();
xputc('\n');
curx = 1;
cury++;
}
cl_end();
curs(cx, cy);
}
}