NetBSD/games/hack/hack.termcap.c

297 lines
5.1 KiB
C
Raw Normal View History

2001-11-02 21:27:00 +03:00
/* $NetBSD: hack.termcap.c,v 1.11 2001/11/02 18:27:00 christos 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
2001-11-02 21:27:00 +03:00
__RCSID("$NetBSD: hack.termcap.c,v 1.11 2001/11/02 18:27:00 christos 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 <unistd.h>
1997-10-19 20:56:41 +04:00
#include "hack.h"
#include "extern.h"
#include "def.flag.h" /* for flags.nonull */
1993-03-21 12:45:37 +03:00
static struct tinfo *info;
1997-10-19 20:56:41 +04:00
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';
static char BC_char = '\b'; /* if bc is not set use this */
1997-10-19 20:56:41 +04:00
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;
2001-11-02 21:27:00 +03:00
char *pc;
1993-03-21 12:45:37 +03: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 */
if (t_getent(&info, term) < 1)
1993-03-21 12:45:37 +03:00
error("Unknown terminal type: %s.", term);
2001-11-02 21:27:00 +03:00
if ((pc = t_agetstr(info, "pc")) != NULL)
1993-03-21 12:45:37 +03:00
PC = *pc;
2001-11-02 21:27:00 +03:00
if (!(BC = t_agetstr(info, "bc"))) {
if (!t_getflag(info, "bs"))
1993-03-21 12:45:37 +03:00
error("Terminal must backspace.");
BC = &BC_char;
1993-03-21 12:45:37 +03:00
}
2001-11-02 21:27:00 +03:00
HO = t_agetstr(info, "ho");
CO = t_getnum(info, "co");
LI = t_getnum(info, "li");
1997-10-19 20:56:41 +04:00
if (CO < COLNO || LI < ROWNO + 2)
1993-03-21 12:45:37 +03:00
setclipped();
2001-11-02 21:27:00 +03:00
if (!(CL = t_agetstr(info, "cl")))
1993-03-21 12:45:37 +03:00
error("Hack needs CL.");
2001-11-02 21:27:00 +03:00
ND = t_agetstr(info, "nd");
if (t_getflag(info, "os"))
1993-03-21 12:45:37 +03:00
error("Hack can't have OS.");
2001-11-02 21:27:00 +03:00
CE = t_agetstr(info, "ce");
UP = t_agetstr(info, "up");
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.
*/
2001-11-02 21:27:00 +03:00
XD = t_agetstr(info, "xd");
/* not: XD = t_agetstr(info, "do"); */
if (!(CM = t_agetstr(info, "cm"))) {
1997-10-19 20:56:41 +04:00
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();
}
2001-11-02 21:27:00 +03:00
SO = t_agetstr(info, "so");
SE = t_agetstr(info, "se");
SG = t_getnum(info, "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;
2001-11-02 21:27:00 +03:00
CD = t_agetstr(info, "cd");
1997-10-19 20:56:41 +04:00
set_whole_screen(); /* uses LI and CD */
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
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
{
char buf[256];
if (t_goto(info, CM, x - 1, y - 1, buf, 255) >= 0) {
xputs(buf);
cury = y;
curx = x;
}
1993-03-21 12:45:37 +03:00
}
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()
{
char buf[256];
1997-10-19 20:56:41 +04:00
if (HO)
1993-03-21 12:45:37 +03:00
xputs(HO);
else if ((CM) && (t_goto(info, CM, 0, 0, buf, 255) >= 0))
xputs(buf);
1993-03-21 12:45:37 +03:00
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 */
/* or the usleep call like this :-) */
usleep(50000);
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);
}
}