#include <string.h>
#include "curses.ext"
#include <term.h>
#define HARDTABS 8
void fgoto(void);
int plodput(char);
int plod(int);
int tabcol(int, int);
static int outcol, outline, destcol, destline;
extern WINDOW *_win;
int
mvcur(int ly, int lx, int y, int x)
{
#ifdef DEBUG
fprintf(outf, "MVCUR: moving cursor from (%d,%d) to (%d,%d)\n",
ly, lx, y, x);
#endif
destcol = x;
destline = y;
outcol = lx;
outline = ly;
fgoto();
return (OK);
}
void
fgoto(void)
{
char *cgp;
int l, c;
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) {
if (_pfast)
if (CR)
(void) _puts(CR);
else
(void) _putchar('\r');
if (NL)
(void) _puts(NL);
else
(void) _putchar('\n');
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;
if (_pfast == 0 && !CA)
destcol = 0;
fgoto();
destcol = c;
}
while (l >= LINES) {
if (NL && _pfast)
(void) _puts(NL);
else
(void) _putchar('\n');
l--;
if (_pfast == 0)
outcol = 0;
}
}
if (destline < outline && !(CA || UP))
destline = outline;
if (CA) {
cgp = tgoto(CM, destcol, destline);
if (plod((int)strlen(cgp)) > 0)
(void) plod(0);
else
(void) tputs(cgp, 0, _putchar);
}
else
(void) plod(0);
outline = destline;
outcol = destcol;
}
static int plodcnt, plodflg;
int
plodput(char c)
{
if (plodflg)
plodcnt--;
else
(void) _putchar(c);
return (OK);
}
int
plod(int cnt)
{
int i, j, k;
int soutcol, soutline;
plodcnt = plodflg = cnt;
soutcol = outcol;
soutline = outline;
if (HO) {
if (GT)
i = (destcol / HARDTABS) + (destcol % HARDTABS);
else
i = destcol;
if (destcol >= outcol) {
j = destcol / HARDTABS - outcol / HARDTABS;
if (GT && j)
j += destcol % HARDTABS;
else
j = destcol - outcol;
}
else
if (outcol - destcol <= i && (BS || BC))
i = j = outcol - destcol;
else
j = i + 1;
k = outline - destline;
if (k < 0)
k = -k;
j += k;
if (i + destline < j || (!UP && destline < outline)) {
(void) tputs(HO, 0, plodput);
outcol = outline = 0;
} else if (LL) {
k = (LINES - 1) - destline;
if (i + k + 2 < j && (k <= 0 || UP)) {
(void) tputs(LL, 0, plodput);
outcol = 0;
outline = LINES - 1;
}
}
}
else
if (!UP && destline < outline)
return (-1);
if (GT)
i = destcol % HARDTABS + destcol / HARDTABS;
else
i = destcol;
j = outcol - destcol;
if ((NONL || !_pfast) && outline < destline)
goto dontcr;
if (NC && outline >= destline)
goto dontcr;
if (j > i + 1 || outcol > destcol && !BS && !BC) {
if (CR)
(void) tputs(CR, 0, plodput);
else
(void) plodput('\r');
if (NC) {
if (NL)
(void) tputs(NL, 0, plodput);
else
(void) plodput('\n');
outline++;
}
outcol = 0;
}
dontcr:
while (outline < destline) {
outline++;
if (NL)
(void) tputs(NL, 0, plodput);
else
(void) plodput('\n');
if (plodcnt < 0)
goto out;
if (NONL || _pfast == 0)
outcol = 0;
}
if (BT)
k = (int)strlen(BT);
while (outcol > destcol) {
if (plodcnt < 0)
goto out;
outcol--;
if (BC)
(void) tputs(BC, 0, plodput);
else
(void) plodput('\b');
}
while (outline > destline) {
outline--;
(void) 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)
(void) tputs(TA, 0, plodput);
else
(void) plodput('\t');
outcol = i;
}
if (destcol - outcol > 4 && i < COLS && (BC || BS)) {
if (TA)
(void) tputs(TA, 0, plodput);
else
(void) plodput('\t');
outcol = i;
while (outcol > destcol) {
outcol--;
if (BC)
(void) tputs(BC, 0, plodput);
else
(void) plodput('\b');
}
}
}
while (outcol < destcol) {
if (_win != NULL)
if (plodflg)
plodcnt--;
else {
i = curscr->_y[outline][outcol];
if ((i&_STANDOUT) == (curscr->_flags&_STANDOUT))
(void) _putchar(i & 0177);
else
goto nondes;
}
else
nondes:
if (ND)
(void) tputs(ND, 0, plodput);
else
(void) plodput(' ');
outcol++;
if (plodcnt < 0)
goto out;
}
out:
if (plodflg) {
outcol = soutcol;
outline = soutline;
}
return (plodcnt);
}
int
tabcol(int col, int ts)
{
int offset;
if (col >= COLS) {
offset = COLS * (col / COLS);
col -= offset;
}
else
offset = 0;
return (col + ts - (col % ts) + offset);
}