1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
|
/*
* display.c
*
* Anthony's Editor November 95
*
* Copyright 1993, 1995 by Anthony Howe. All rights reserved. No warranty.
*/
#include <ctype.h>
#include "header.h"
#ifdef __STDC__
static void dispmsg(void);
static int dispframe(void);
static int dispchar(int, int, int);
#else
static void dispmsg();
static int dispframe();
static int dispchar();
#endif
extern int centre_now ;
/*
* Consider "printable" any iso-8859-1 character.
*/
#define my_isprint(ch) (isprint((ch)) || 160 <= (ch) && (ch) <= 255)
/*
* Reverse scan for start of logical line containing offset.
*
* offset <= 0 return 0
* 0 < offset return 0 <= lnstart(offset) <= offset
*/
t_point
lnstart(offset)
register t_point offset;
{
register int ch;
/* Make sure that offset maps to a buffer location. */
if (offset <= 0)
return (0);
/* Set up sentinel. */
ch = *buf;
*buf = '\n';
/* Scan backwards for a newline. */
while (*ptr(--offset) != '\n')
;
/* Remove the sentinal. */
*buf = ch;
/* Adjust offset provided offset != 0 or that we would
* have really found a newline instead of the sentinel.
*/
if (offset != 0 || ch == '\n')
++offset;
return (offset);
}
/*
* Forward scan for start of logical line following offset.
*
* offset <= 0 return 1
* pos(ebuf) <= offset return pos(ebuf)
* 0 < offset < pos(ebuf) return offset < lnnext(offset) <= pos(ebuf)
*/
t_point
lnnext(off)
register t_point off;
{
register int ch;
register t_char *p;
/* Set up sentinal. */
ch = ebuf[-1];
ebuf[-1] = '\n';
/* Scan forwards for newline. */
while (*(p = ptr(off++)) != '\n')
;
/* Remove sentinal. */
ebuf[-1] = ch;
/* Return offset immediately following a newline. */
return (pos(p)+1);
}
/*
* Forward scan for start of logical line segment containing 'finish'.
* A segment of a logical line corresponds to a physical screen line.
*/
t_point
segstart(start, finish)
t_point start, finish;
{
t_char *p;
int c = 0;
t_point scan = start;
while (scan < finish) {
p = ptr(scan);
if (*p == '\n') {
c = 0;
start = scan+1;
} else if (COLS <= c) {
c = 0;
start = scan;
}
++scan;
c += *p == '\t' ? 8 - (c & 7) : 1;
}
return (c < COLS ? start : finish);
}
/*
* Forward scan for start of logical line segment following 'finish'.
*/
t_point
segnext(start, finish)
t_point start, finish;
{
t_char *p;
int c = 0;
t_point scan = segstart(start, finish);
for (;;) {
p = ptr(scan);
if (ebuf <= p || COLS <= c)
break;
++scan;
if (*p == '\n')
break;
c += *p == '\t' ? 8 - (c & 7) : 1;
}
return (p < ebuf ? scan : pos(ebuf));
}
/*
* Move up one screen line.
*/
t_point
upup(off)
t_point off;
{
t_point curr = lnstart(off);
t_point seg = segstart(curr, off);
if (curr < seg)
off = segstart(curr, seg-1);
else
off = segstart(lnstart(curr-1), curr-1);
return (off);
}
/*
* Move down one screen line.
*/
t_point
dndn(off)
t_point off;
{
return (segnext(lnstart(off), off));
}
/*
* Return the offset of a column on the specified line.
*/
t_point
lncolumn(offset, column)
t_point offset;
int column;
{
int c = 0;
t_char *p;
while ((p = ptr(offset)) < ebuf && *p != '\n' && c < column) {
c += *p == '\t' ? 8 - (c & 7) : 1;
++offset;
}
return (offset);
}
void
display(fn)
void (*fn) _((void));
{
dispmsg();
if (dispframe() || marker != NOMARK)
dispfull();
else if (fn != NULL)
(*fn)();
move(row, col);
refresh();
}
/*
* Full screen and cursor update.
*/
void
dispfull()
{
int i, j;
t_char *p;
t_region r;
move(textline, 0);
i = textline;
j = 0;
epage = page;
getregion(&r);
for (;;) {
if (point == epage) {
row = i;
col = j;
}
p = ptr(epage);
if (LINES <= i || ebuf <= p)
break;
if (iscrlf(epage) != 1) {
if (marker != NOMARK) {
if (point != epage
&& r.left <= epage && epage <= r.right)
standout();
else
standend();
}
j = dispchar(j, (int) *p, TRUE);
}
if (*p == '\n' || COLS <= j) {
j -= COLS;
if (j < 0)
j = 0;
++i;
}
++epage;
}
standend();
clrtobot();
if (++i < LINES)
mvaddstr(i, 0, getmsg(m_eof));
}
/*
* Cursor update.
*/
void
dispcursor()
{
int i, j;
t_char *p;
t_point pt;
i = textline;
j = 0;
pt = page;
for (;;) {
if (point == pt) {
row = i;
col = j;
break;
}
p = ptr(pt);
if (LINES <= i || ebuf <= p)
break;
if (iscrlf(pt) != 1)
j = dispchar(j, (int) *p, FALSE);
if (*p == '\n' || COLS <= j) {
j -= COLS;
if (j < 0)
j = 0;
++i;
}
++pt;
}
standend();
}
static int
dispframe()
{
int i, flag = FALSE;
/* Re-frame the screen with the screen line containing the point
* as the first line, when point < page. Handles the cases of a
* backward scroll or moving to the top of file. pgup() will
* move page relative to point so that page <= point < epage.
*/
if (point < page) {
page = segstart(lnstart(point), point);
flag = TRUE;
}
/* Re-frame the whole screen when epage <= point. Handles the
* cases of a forward scroll or redraw.
*/
if (epage <= point) {
/* Find end of screen plus one. */
page = dndn(point);
/* Number of lines on the screen depends if we are at the
* EOF and how many lines are used for help and status.
*/
if (pos(ebuf) <= page) {
page = pos(ebuf);
i = LINES-2;
} else {
i = LINES;
}
i -= textline;
if( centre_now ) /* Centre cursor on screen */
{
i/=2 ;
centre_now = 0 ;
}
/* Scan backwards the required number of lines. */
while (0 < i--)
page = upup(page);
flag = TRUE;
}
return (flag);
}
#ifdef BADCURSES
int
my_addch(ch)
int ch;
{
int i, x, y;
getyx(stdscr, y, x);
switch (ch) {
case '\t':
for (i = 8 - (7 & x); 0 < i--; )
if (addch(' ') == ERR)
return ERR;
break;
case '\r':
(void) move(y, 0);
break;
case '\b':
if (0 < x)
(void) move(y, x-1);
break;
default:
return addch(ch);
}
return OK;
}
#endif
static int
dispchar(col, ch, flag)
int col, ch, flag;
{
int i;
if (my_isprint(ch) || ch == '\t' || ch == '\n') {
i = ch == '\t' ? 8 - (col & 7) : 1;
col += i;
if (flag)
#ifdef BADCURSES
(void) my_addch(ch);
#else
(void) addch(ch);
#endif
} else {
char *ctrl = printable(ch);
col += (int) strlen(ctrl);
if (flag)
addstr(ctrl);
}
return (col);
}
static void
dispmsg()
{
standout();
move(MSGLINE, 0);
if (msgflag) {
addstr(msgline);
msgflag = FALSE;
} else if (modified) {
printw(getmsg(m_modified), filename);
} else {
printw(getmsg(m_file), filename, pos(ebuf));
}
standend();
clrtoeol();
}
void
ruler(ncols)
int ncols;
{
int r, c, col;
getyx(stdscr, r, c);
standout();
for (col = 1; col <= ncols; ++col) {
switch (col % 10) {
case 0:
mvprintw(r, col - (col < 100 ? 2 : 3), "%d", col);
break;
case 5:
addch('5');
break;
default:
addch('.');
}
}
standend();
#ifdef BADCURSES
(void) move(r+1, 0);
#endif
}
/*
* Convert byte ch into a printable character sequence.
* This mapping is for ASCII systems.
*/
char *
printable(ch)
unsigned ch;
{
static char buf[5];
static char *mapping[] = {
"^?",
"^@", "^A", "^B", "^C", "^D", "^E", "^F", "^G",
"^H", "^I", "^J", "^K", "^L", "^M", "^N", "^O",
"^P", "^Q", "^R", "^S", "^T", "^U", "^V", "^W",
"^X", "^Y", "^Z", "^[", "^\\", "^]", "^^", "^_"
};
if (ch == 0x7f)
return (mapping[0]);
if (0 <= ch && ch < 32)
return (mapping[ch+1]);
if (my_isprint(ch)) {
buf[0] = ch;
buf[1] = '\0';
} else {
sprintf(buf, "\\%03o", ch);
}
return (buf);
}
|