NetBSD/lib/libcurses/cr_put.c

441 lines
10 KiB
C
Raw Normal View History

1998-08-19 04:17:41 +04:00
/* $NetBSD: cr_put.c,v 1.11 1998/08/19 00:20:59 thorpej Exp $ */
1997-07-22 11:36:20 +04:00
1993-03-21 12:45:37 +03:00
/*
1994-08-18 01:51:41 +04:00
* Copyright (c) 1981, 1993, 1994
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
1997-07-22 11:36:20 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1997-07-22 11:36:20 +04:00
#if 0
1994-08-18 01:51:41 +04:00
static char sccsid[] = "@(#)cr_put.c 8.3 (Berkeley) 5/4/94";
1997-07-22 11:36:20 +04:00
#else
1998-08-19 04:17:41 +04:00
__RCSID("$NetBSD: cr_put.c,v 1.11 1998/08/19 00:20:59 thorpej Exp $");
1997-07-22 11:36:20 +04:00
#endif
1993-08-07 09:48:37 +04:00
#endif /* not lint */
1993-03-21 12:45:37 +03:00
1993-08-07 09:48:37 +04:00
#include <string.h>
1993-03-21 12:45:37 +03:00
1994-08-18 01:51:41 +04:00
#include "curses.h"
1993-08-07 09:48:37 +04:00
#define HARDTABS 8
1993-03-21 12:45:37 +03:00
/*
1993-08-07 09:48:37 +04:00
* Terminal driving and line formatting routines. Basic motion optimizations
* are done here as well as formatting lines (printing of control characters,
1993-03-21 12:45:37 +03:00
* line numbering and the like).
*/
/* Stub function for the users. */
int
mvcur(ly, lx, y, x)
int ly, lx, y, x;
{
return (__mvcur(ly, lx, y, x, 0));
}
static void fgoto __P((int));
static int plod __P((int, int));
1993-08-07 09:48:37 +04:00
static void plodput __P((int));
static int tabcol __P((int, int));
static int outcol, outline, destcol, destline;
1993-03-21 12:45:37 +03:00
/*
1993-08-07 09:48:37 +04:00
* Sync the position of the output cursor. Most work here is rounding for
* terminal boundaries getting the column position implied by wraparound or
* the lack thereof and rolling up the screen to get destline on the screen.
1993-03-21 12:45:37 +03:00
*/
1993-08-07 09:48:37 +04:00
int
__mvcur(ly, lx, y, x, in_refresh)
int ly, lx, y, x, in_refresh;
1993-08-07 09:48:37 +04:00
{
1993-03-21 12:45:37 +03:00
#ifdef DEBUG
__CTRACE("mvcur: moving cursor from (%d, %d) to (%d, %d)\n",
1993-08-07 09:48:37 +04:00
ly, lx, y, x);
1993-03-21 12:45:37 +03:00
#endif
destcol = x;
destline = y;
outcol = lx;
outline = ly;
fgoto(in_refresh);
1993-08-07 09:48:37 +04:00
return (OK);
}
1993-08-07 09:48:37 +04:00
static void
fgoto(in_refresh)
int in_refresh;
1993-03-21 12:45:37 +03:00
{
1998-02-03 22:12:13 +03:00
int c, l;
char *cgp;
1993-03-21 12:45:37 +03:00
if (destcol >= COLS) {
destline += destcol / COLS;
destcol %= COLS;
}
if (outcol >= COLS) {
l = (outcol + 1) / COLS;
outline += l;
outcol %= COLS;
if (AM == 0) {
while (l > 0) {
1998-08-19 04:17:41 +04:00
if (__pfast) {
1993-03-21 12:45:37 +03:00
if (CR)
1993-08-07 09:48:37 +04:00
tputs(CR, 0, __cputchar);
1993-03-21 12:45:37 +03:00
else
1993-08-07 09:48:37 +04:00
putchar('\r');
1998-08-19 04:17:41 +04:00
}
1993-03-21 12:45:37 +03:00
if (NL)
1993-08-07 09:48:37 +04:00
tputs(NL, 0, __cputchar);
1993-03-21 12:45:37 +03:00
else
1993-08-07 09:48:37 +04:00
putchar('\n');
1993-03-21 12:45:37 +03:00
l--;
}
outcol = 0;
}
if (outline > LINES - 1) {
destline -= outline - (LINES - 1);
outline = LINES - 1;
}
}
if (destline >= LINES) {
l = destline;
destline = LINES - 1;
if (outline < LINES - 1) {
c = destcol;
1993-08-07 09:48:37 +04:00
if (__pfast == 0 && !CA)
1993-03-21 12:45:37 +03:00
destcol = 0;
fgoto(in_refresh);
1993-03-21 12:45:37 +03:00
destcol = c;
}
while (l >= LINES) {
1993-08-07 09:48:37 +04:00
/* The following linefeed (or simulation thereof) is
* supposed to scroll up the screen, since we are on
* the bottom line. We make the assumption that
* linefeed will scroll. If ns is in the capability
* list this won't work. We should probably have an
* sc capability but sf will generally take the place
* if it works.
*
* Superbee glitch: in the middle of the screen have
* to use esc B (down) because linefeed screws up in
* "Efficient Paging" (what a joke) mode (which is
* essential in some SB's because CRLF mode puts
* garbage in at end of memory), but you must use
* linefeed to scroll since down arrow won't go past
* memory end. I turned this off after recieving Paul
* Eggert's Superbee description which wins better.
1993-03-21 12:45:37 +03:00
*/
1993-08-07 09:48:37 +04:00
if (NL /* && !XB */ && __pfast)
tputs(NL, 0, __cputchar);
1993-03-21 12:45:37 +03:00
else
1993-08-07 09:48:37 +04:00
putchar('\n');
1993-03-21 12:45:37 +03:00
l--;
1993-08-07 09:48:37 +04:00
if (__pfast == 0)
1993-03-21 12:45:37 +03:00
outcol = 0;
}
}
if (destline < outline && !(CA || UP))
destline = outline;
if (CA) {
cgp = tgoto(CM, destcol, destline);
/*
* Need this condition due to inconsistent behavior
* of backspace on the last column.
*/
if (outcol != COLS - 1 && plod(strlen(cgp), in_refresh) > 0)
plod(0, in_refresh);
else
1993-08-07 09:48:37 +04:00
tputs(cgp, 0, __cputchar);
} else
plod(0, in_refresh);
1993-03-21 12:45:37 +03:00
outline = destline;
outcol = destcol;
}
/*
* Move (slowly) to destination.
* Hard thing here is using home cursor on really deficient terminals.
* Otherwise just use cursor motions, hacking use of tabs and overtabbing
* and backspace.
*/
static int plodcnt, plodflg;
1993-08-07 09:48:37 +04:00
static void
1993-03-21 12:45:37 +03:00
plodput(c)
1993-08-07 09:48:37 +04:00
int c;
1993-03-21 12:45:37 +03:00
{
if (plodflg)
1993-08-07 09:48:37 +04:00
--plodcnt;
1993-03-21 12:45:37 +03:00
else
1993-08-07 09:48:37 +04:00
putchar(c);
1993-03-21 12:45:37 +03:00
}
1993-08-07 09:48:37 +04:00
static int
plod(cnt, in_refresh)
int cnt, in_refresh;
1993-03-21 12:45:37 +03:00
{
1998-02-03 22:12:13 +03:00
int i, j, k, soutcol, soutline;
1993-03-21 12:45:37 +03:00
plodcnt = plodflg = cnt;
soutcol = outcol;
soutline = outline;
/*
1993-08-07 09:48:37 +04:00
* Consider homing and moving down/right from there, vs. moving
1993-03-21 12:45:37 +03:00
* directly with local motions to the right spot.
*/
if (HO) {
/*
1993-08-07 09:48:37 +04:00
* i is the cost to home and tab/space to the right to get to
* the proper column. This assumes ND space costs 1 char. So
* i + destcol is cost of motion with home.
1993-03-21 12:45:37 +03:00
*/
if (GT)
i = (destcol / HARDTABS) + (destcol % HARDTABS);
else
i = destcol;
1993-08-07 09:48:37 +04:00
/* j is cost to move locally without homing. */
1993-03-21 12:45:37 +03:00
if (destcol >= outcol) { /* if motion is to the right */
j = destcol / HARDTABS - outcol / HARDTABS;
if (GT && j)
j += destcol % HARDTABS;
else
j = destcol - outcol;
1993-08-07 09:48:37 +04:00
} else
1993-03-21 12:45:37 +03:00
/* leftward motion only works if we can backspace. */
if (outcol - destcol <= i && (BS || BC))
1993-08-07 09:48:37 +04:00
/* Cheaper to backspace. */
i = j = outcol - destcol;
1993-03-21 12:45:37 +03:00
else
1993-08-07 09:48:37 +04:00
/* Impossibly expensive. */
j = i + 1;
1993-03-21 12:45:37 +03:00
1993-08-07 09:48:37 +04:00
/* k is the absolute value of vertical distance. */
1993-03-21 12:45:37 +03:00
k = outline - destline;
if (k < 0)
k = -k;
j += k;
1993-08-07 09:48:37 +04:00
/* Decision. We may not have a choice if no UP. */
1993-03-21 12:45:37 +03:00
if (i + destline < j || (!UP && destline < outline)) {
/*
* Cheaper to home. Do it now and pretend it's a
* regular local motion.
*/
tputs(HO, 0, plodput);
outcol = outline = 0;
1993-08-07 09:48:37 +04:00
} else if (LL) {
1993-03-21 12:45:37 +03:00
/*
* Quickly consider homing down and moving from there.
* Assume cost of LL is 2.
*/
k = (LINES - 1) - destline;
1993-08-07 09:48:37 +04:00
if (i + k + 2 < j && (k <= 0 || UP)) {
1993-03-21 12:45:37 +03:00
tputs(LL, 0, plodput);
outcol = 0;
outline = LINES - 1;
}
}
1993-08-07 09:48:37 +04:00
} else
/* No home and no up means it's impossible. */
1993-03-21 12:45:37 +03:00
if (!UP && destline < outline)
1993-08-07 09:48:37 +04:00
return (-1);
1993-03-21 12:45:37 +03:00
if (GT)
i = destcol % HARDTABS + destcol / HARDTABS;
else
i = destcol;
1993-08-07 09:48:37 +04:00
#ifdef notdef
if (BT && outcol > destcol &&
(j = (((outcol+7) & ~7) - destcol - 1) >> 3)) {
1993-03-21 12:45:37 +03:00
j *= (k = strlen(BT));
if ((k += (destcol&7)) > 4)
j += 8 - (destcol&7);
else
j += k;
}
else
1993-08-07 09:48:37 +04:00
#endif
1993-03-21 12:45:37 +03:00
j = outcol - destcol;
1993-08-07 09:48:37 +04:00
1993-03-21 12:45:37 +03:00
/*
1993-08-07 09:48:37 +04:00
* If we will later need a \n which will turn into a \r\n by the
* system or the terminal, then don't bother to try to \r.
1993-03-21 12:45:37 +03:00
*/
if ((NONL || !__pfast) && outline < destline)
1993-03-21 12:45:37 +03:00
goto dontcr;
1993-08-07 09:48:37 +04:00
1993-03-21 12:45:37 +03:00
/*
1993-08-07 09:48:37 +04:00
* If the terminal will do a \r\n and there isn't room for it, then
* we can't afford a \r.
1993-03-21 12:45:37 +03:00
*/
if (NC && outline >= destline)
goto dontcr;
1993-08-07 09:48:37 +04:00
1993-03-21 12:45:37 +03:00
/*
1993-08-07 09:48:37 +04:00
* If it will be cheaper, or if we can't back up, then send a return
* preliminarily.
1993-03-21 12:45:37 +03:00
*/
1997-07-22 11:36:20 +04:00
if (j > i + 1 || (outcol > destcol && !BS && !BC)) {
1993-03-21 12:45:37 +03:00
/*
1993-08-07 09:48:37 +04:00
* BUG: this doesn't take the (possibly long) length of CR
* into account.
1993-03-21 12:45:37 +03:00
*/
if (CR)
tputs(CR, 0, plodput);
else
plodput('\r');
if (NC) {
if (NL)
tputs(NL, 0, plodput);
else
plodput('\n');
outline++;
}
outcol = 0;
}
1993-08-07 09:48:37 +04:00
dontcr: while (outline < destline) {
1993-03-21 12:45:37 +03:00
outline++;
if (NL)
tputs(NL, 0, plodput);
else
plodput('\n');
if (plodcnt < 0)
goto out;
if (NONL || __pfast == 0)
1993-03-21 12:45:37 +03:00
outcol = 0;
}
if (BT)
k = strlen(BT);
while (outcol > destcol) {
if (plodcnt < 0)
goto out;
1993-08-07 09:48:37 +04:00
#ifdef notdef
1993-03-21 12:45:37 +03:00
if (BT && outcol - destcol > k + 4) {
tputs(BT, 0, plodput);
outcol--;
outcol &= ~7;
continue;
}
1993-08-07 09:48:37 +04:00
#endif
1993-03-21 12:45:37 +03:00
outcol--;
if (BC)
tputs(BC, 0, plodput);
else
plodput('\b');
}
while (outline > destline) {
outline--;
tputs(UP, 0, plodput);
if (plodcnt < 0)
goto out;
}
if (GT && destcol - outcol > 1) {
for (;;) {
i = tabcol(outcol, HARDTABS);
if (i > destcol)
break;
if (TA)
tputs(TA, 0, plodput);
else
plodput('\t');
outcol = i;
}
if (destcol - outcol > 4 && i < COLS && (BC || BS)) {
if (TA)
tputs(TA, 0, plodput);
else
plodput('\t');
outcol = i;
while (outcol > destcol) {
outcol--;
if (BC)
tputs(BC, 0, plodput);
else
plodput('\b');
}
}
}
while (outcol < destcol) {
/*
1993-08-07 09:48:37 +04:00
* Move one char to the right. We don't use ND space because
* it's better to just print the char we are moving over.
1993-03-21 12:45:37 +03:00
*/
if (in_refresh)
1993-08-07 09:48:37 +04:00
if (plodflg) /* Avoid a complex calculation. */
1993-03-21 12:45:37 +03:00
plodcnt--;
else {
i = curscr->lines[outline]->line[outcol].ch;
if ((curscr->lines[outline]->line[outcol].attr
& __STANDOUT) ==
(curscr->flags & __WSTANDOUT))
putchar(i);
1993-03-21 12:45:37 +03:00
else
goto nondes;
}
else
1993-08-07 09:48:37 +04:00
nondes: if (ND)
tputs(ND, 0, plodput);
else
plodput(' ');
1993-03-21 12:45:37 +03:00
outcol++;
if (plodcnt < 0)
goto out;
}
1993-08-07 09:48:37 +04:00
out: if (plodflg) {
1993-03-21 12:45:37 +03:00
outcol = soutcol;
outline = soutline;
}
1993-08-07 09:48:37 +04:00
return (plodcnt);
1993-03-21 12:45:37 +03:00
}
/*
* Return the column number that results from being in column col and
* hitting a tab, where tabs are set every ts columns. Work right for
* the case where col > COLS, even if ts does not divide COLS.
*/
1993-08-07 09:48:37 +04:00
static int
1993-03-21 12:45:37 +03:00
tabcol(col, ts)
1993-08-07 09:48:37 +04:00
int col, ts;
1993-03-21 12:45:37 +03:00
{
1993-08-07 09:48:37 +04:00
int offset;
1993-03-21 12:45:37 +03:00
if (col >= COLS) {
offset = COLS * (col / COLS);
col -= offset;
1993-08-07 09:48:37 +04:00
} else
1993-03-21 12:45:37 +03:00
offset = 0;
1993-08-07 09:48:37 +04:00
return (col + ts - (col % ts) + offset);
1993-03-21 12:45:37 +03:00
}