ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/screen.C
(Generate patch)

Comparing rxvt-unicode/src/screen.C (file contents):
Revision 1.179 by root, Tue Dec 20 22:47:14 2005 UTC vs.
Revision 1.190 by root, Thu Dec 22 15:52:57 2005 UTC

147} 147}
148 148
149/* ------------------------------------------------------------------------- * 149/* ------------------------------------------------------------------------- *
150 * SCREEN INITIALISATION * 150 * SCREEN INITIALISATION *
151 * ------------------------------------------------------------------------- */ 151 * ------------------------------------------------------------------------- */
152
152void 153void
153rxvt_term::scr_reset () 154rxvt_term::scr_reset ()
154{ 155{
155 unsigned int p, q;
156 int k;
157
158#if ENABLE_OVERLAY 156#if ENABLE_OVERLAY
159 scr_overlay_off (); 157 scr_overlay_off ();
160#endif 158#endif
161 159
162 view_start = 0; 160 view_start = 0;
172 return; 170 return;
173 171
174 // we need at least two lines for wrapping to work correctly 172 // we need at least two lines for wrapping to work correctly
175 if (nrow + saveLines < 2) 173 if (nrow + saveLines < 2)
176 { 174 {
175 //TODO//FIXME
177 saveLines++; 176 saveLines++;
178 prev_nrow--; 177 prev_nrow--;
179 nsaved++; 178 nsaved++;
180 } 179 }
181 180
185 total_rows = nrow + saveLines; 184 total_rows = nrow + saveLines;
186 185
187 screen.tscroll = 0; 186 screen.tscroll = 0;
188 screen.bscroll = nrow - 1; 187 screen.bscroll = nrow - 1;
189 188
190 if (!save) 189 if (!row_buf)
191 { 190 {
192 /* 191 /*
193 * first time called so just malloc everything: don't rely on realloc 192 * first time called so just malloc everything: don't rely on realloc
194 * Note: this is still needed so that all the scrollback lines are NULL 193 * Note: this is still needed so that all the scrollback lines are NULL
195 */ 194 */
197 term_start = 0; 196 term_start = 0;
198 197
199 talloc = new rxvt_salloc (ncol * sizeof (text_t)); 198 talloc = new rxvt_salloc (ncol * sizeof (text_t));
200 ralloc = new rxvt_salloc (ncol * sizeof (rend_t)); 199 ralloc = new rxvt_salloc (ncol * sizeof (rend_t));
201 200
202 save = (line_t *)rxvt_calloc (total_rows, sizeof (line_t));
203 buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t)); 201 row_buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t));
202 temp_buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t));
204 drawn = (line_t *)rxvt_calloc (nrow, sizeof (line_t)); 203 drawn_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t));
205 swap_save = (line_t *)rxvt_calloc (nrow, sizeof (line_t)); 204 swap_buf = (line_t *)rxvt_calloc (nrow , sizeof (line_t));
206 205
207 for (p = nrow; p--; ) 206 for (int row = nrow; row--; )
208 { 207 {
209 scr_blank_screen_mem (ROW(p), DEFAULT_RSTYLE); 208 scr_blank_screen_mem (ROW (row), DEFAULT_RSTYLE);
210 scr_blank_screen_mem (swap_save[p], DEFAULT_RSTYLE); 209 scr_blank_screen_mem (swap_buf [row], DEFAULT_RSTYLE);
211 scr_blank_screen_mem (drawn[p], DEFAULT_RSTYLE); 210 scr_blank_screen_mem (drawn_buf[row], DEFAULT_RSTYLE);
212 } 211 }
213 212
214 memset (charsets, 'B', sizeof (charsets)); 213 memset (charsets, 'B', sizeof (charsets));
215 rstyle = DEFAULT_RSTYLE; 214 rstyle = DEFAULT_RSTYLE;
216 screen.flags = Screen_DefaultFlags; 215 screen.flags = Screen_DefaultFlags;
240 { 239 {
241 /* 240 /*
242 * add or delete rows as appropriate 241 * add or delete rows as appropriate
243 */ 242 */
244 243
245 rxvt_salloc *old_ta; 244 rxvt_salloc *old_ta = talloc; talloc = new rxvt_salloc (ncol * sizeof (text_t));
246 rxvt_salloc *old_ra; 245 rxvt_salloc *old_ra = ralloc; ralloc = new rxvt_salloc (ncol * sizeof (rend_t));
247 246
247#if 0
248 if (nrow < prev_nrow) 248 if (nrow < prev_nrow)
249 { 249 {
250 /* delete rows */
251 k = min (nsaved, prev_nrow - nrow);
252 // k = max (0, - ( (nrow - 1) - r->screen.cur.row)); // mmc's http://maruska.dyndns.org/wiki/scrolling-bug //make configurable? //D TODO
253 scr_scroll_text (0, (int)prev_nrow - 1, k);
254
255 for (p = nrow; p < prev_nrow; p++) 250 for (int row = nrow; row < prev_nrow; row++)
256 { 251 {
257 lfree (ROW(p));
258 lfree (swap_save[p]); 252 lfree (swap_buf [row]);
259 lfree (drawn[p]); 253 lfree (drawn_buf[row]);
260 } 254 }
255 }
256#endif
261 257
262 /* we have fewer rows so fix up cursor position */ 258 drawn_buf = (line_t *)rxvt_realloc (drawn_buf, nrow * sizeof (line_t));
263 MIN_IT (screen.cur.row, (int32_t)nrow - 1); 259 temp_buf = (line_t *)rxvt_realloc (temp_buf , nrow * sizeof (line_t));
260 swap_buf = (line_t *)rxvt_realloc (swap_buf , nrow * sizeof (line_t));
264 261
265 scr_reset_realloc (); /* realloc _last_ */ 262 for (int row = min (nrow, prev_nrow); row--; )
263 {
264 lresize (drawn_buf[row]);
265 lresize (swap_buf [row]);
266 }
267
268 for (int row = prev_nrow; row < nrow; row++)
269 {
270 swap_buf [row].clear (); scr_blank_screen_mem (swap_buf [row], DEFAULT_RSTYLE);
271 drawn_buf[row].clear (); scr_blank_screen_mem (drawn_buf[row], DEFAULT_RSTYLE);
272 }
273
274 line_t *old_buf = row_buf; row_buf = (line_t *)rxvt_calloc (total_rows, sizeof (line_t));
266 } 275
267 else if (nrow > prev_nrow) 276 int p = MOD (term_start + prev_nrow, prev_total_rows); // previous row
268 { 277 int pend = MOD (term_start - nsaved , prev_total_rows);
269 /* add rows */ 278 int q = total_rows; // rewrapped row
270 scr_reset_realloc (); /* realloc _first_ */
271 279
272 int ocol = ncol; 280 if (nsaved)
273 ncol = prev_ncol; // save b/c scr_blank_screen_mem uses this 281 {
282 // re-wrap lines, this is rather ugly, possibly because I am too dumb
283 // to come up with a lean and mean algorithm.
274 284
275 k = min (nsaved, nrow - prev_nrow); 285 row_col_t ocur = screen.cur;
286 ocur.row = MOD (term_start + ocur.row, prev_total_rows);
276 287
277 for (p = prev_total_rows; p < total_rows; p++) 288 while (p != pend && q > 0)
278 save[p].clear ();
279
280 for (p = prev_total_rows; p < total_rows - k; p++)
281 scr_blank_screen_mem (save[p], DEFAULT_RSTYLE);
282
283 for (p = prev_nrow; p < nrow; p++)
284 { 289 {
285 swap_save[p].clear (); scr_blank_screen_mem (swap_save[p], DEFAULT_RSTYLE); 290 p = MOD (p - 1, prev_total_rows);
286 drawn[p].clear (); scr_blank_screen_mem (drawn[p], DEFAULT_RSTYLE);
287 }
288
289 if (k > 0)
290 {
291 scr_scroll_text (0, (int)nrow - 1, -k);
292 screen.cur.row += k;
293 screen.s_cur.row += k;
294 nsaved -= k;
295 }
296
297#ifdef DEBUG_STRICT 291#ifdef DEBUG_STRICT
298 assert (screen.cur.row < nrow); 292 assert (old_buf [MOD (p, prev_total_rows)].t);
299#else /* drive with your eyes closed */
300 MIN_IT (screen.cur.row, nrow - 1);
301#endif 293#endif
302 ncol = ocol; // save b/c scr_blank_screen_mem uses this
303 }
304 294
305 /* resize columns */
306 if (ncol != prev_ncol)
307 {
308 old_ta = talloc; talloc = new rxvt_salloc (ncol * sizeof (text_t));
309 old_ra = ralloc; ralloc = new rxvt_salloc (ncol * sizeof (rend_t));
310
311 for (p = total_rows; p--; )
312 lresize (save[p]);
313
314 for (p = nrow; p--; )
315 {
316 lresize (drawn[p]);
317 lresize (swap_save[p]);
318 }
319
320 MIN_IT (screen.cur.col, (int16_t)ncol - 1);
321
322 delete old_ta;
323 delete old_ra;
324 }
325
326#if 0
327 // re-wrap lines, this is rather ugly, possibly because I am too dumb
328 // to come up with a lean and mean algorithm.
329 rxvt_salloc *ta = new rxvt_salloc (ncol * sizeof (text_t));
330 rxvt_salloc *ra = new rxvt_salloc (ncol * sizeof (rend_t));
331
332 text_t **tp = (text_t **)rxvt_calloc (total_rows, sizeof (text_t *));
333 rend_t **rp = (rend_t **)rxvt_calloc (total_rows, sizeof (rend_t *));
334 tlen_t *tl = (tlen_t *) rxvt_calloc (total_rows, sizeof (tlen_t));
335
336 for (p = 0; p < prev_total_rows; p++) printf ("P %p %d\n", save[p].t, save[p].l);//D
337
338 p = prev_total_rows;
339 q = total_rows;
340
341 while (p > 0 && q > 0)
342 {
343 --p;
344
345 printf ("pq %d:%d\n", p, q);
346 if (save[p].t)
347 {
348 int llen = save[p].l; 295 int plines = 1;
296 int llen = old_buf [MOD (p, prev_total_rows)].l;
349 297
350 assert (llen >= 0); 298 while (p != pend && old_buf [MOD (p - 1, prev_total_rows)].is_longer ())
351
352 while (p && save[p - 1].l < 0)
353 { 299 {
300 p = MOD (p - 1, prev_total_rows);
301
354 --p; 302 plines++;
355 llen += prev_ncol; 303 llen += prev_ncol;
356 } 304 }
357 305
358 int qlines = llen / ncol + 1; 306 int qlines = max (0, (llen - 1) / ncol) + 1;
307
308 // drop partial lines completely
309 if (q < qlines)
310 break;
311
312 q -= qlines;
313
359 int lofs = 0; 314 int lofs = 0;
315 line_t *qline;
360 316
361 q -= qlines; 317 // re-assemble the full line by destination lines
362
363 int qrow = q;
364
365 printf ("QL %d llen %d\n", qlines, llen);//D
366 for (; qlines--; qrow++) 318 for (int qrow = q; qlines--; qrow++)
367 { 319 {
320 qline = row_buf + qrow;
321 lalloc (*qline);
322 qline->set_is_longer ();
323
368 if (qrow >= 0) 324 int qcol = 0;
325
326 // fill a single destination line
327 while (lofs < llen && qcol < ncol)
369 { 328 {
370 tp [qrow] = (text_t *)ta->alloc ();
371 rp [qrow] = (rend_t *)ra->alloc ();
372 tl [qrow] = LINE_CONT1;
373
374 int qcol = 0;
375
376 for (;;)
377 {
378 int prow = lofs / prev_ncol + p; 329 int prow = lofs / prev_ncol;
379 int pcol = lofs % prev_ncol; 330 int pcol = lofs % prev_ncol;
380 331
332 prow = MOD (p + prow, prev_total_rows);
333
334 // we only adjust the cursor _row_, as this seems to upset
335 // applications/shells/readline least.
336 if (prow == ocur.row)
337 screen.cur.row = qrow - (total_rows - nrow);
338
339 line_t &pline = old_buf [prow];
340
381 int len = min (min (prev_ncol - pcol, ncol - qcol), llen - lofs); 341 int len = min (min (prev_ncol - pcol, ncol - qcol), llen - lofs);
382 342
383 printf ("q %d lofs %d>%d len %d pq %d:%d p %d:%d q :%d\n", q, llen, lofs, len, prev_ncol, ncol, prow, pcol, qcol);
384
385 if (len <= 0)
386 {
387 tl [qrow] = qcol;
388
389 TODO
390 scr_blank_line (tp [qrow] + qcol, rp [qrow] + qcol,
391 ncol - qcol, DEFAULT_RSTYLE);
392
393 break;
394 }
395
396 assert (lofs < 1000); 343 assert (len);
344 assert (pline.t);
397 345
398 memcpy (tp [qrow] + qcol, save[prow].t + pcol, len * sizeof (text_t)); 346 memcpy (qline->t + qcol, pline.t + pcol, len * sizeof (text_t));
399 memcpy (rp [qrow] + qcol, save[prow].r + pcol, len * sizeof (rend_t)); 347 memcpy (qline->r + qcol, pline.r + pcol, len * sizeof (rend_t));
400 348
401 lofs += len; 349 lofs += len;
402 qcol += len; 350 qcol += len;
403
404 if (qcol == ncol)
405 break;
406 }
407 } 351 }
408 else
409 lofs += ncol;
410 } 352 }
353
354 qline->l = llen < ncol ? llen : MOD (llen - 1, ncol) + 1;
355 scr_blank_line (*qline, qline->l, ncol - qline->l, DEFAULT_RSTYLE);
411 } 356 }
357
358 term_start = total_rows - nrow;
359 view_start = 0;
360 nsaved = term_start - q;
361
362 // make sure all terminal lines exist
363 while (nsaved < 0)
364 scr_blank_screen_mem (ROW (-++nsaved), DEFAULT_RSTYLE);
365
366 }
367 else
412 } 368 {
369 // if no scrollback exists (yet), wing, instead of wrap
370
371 for (int row = min (nrow, prev_nrow); row--; )
372 {
373 line_t &pline = old_buf [MOD (term_start + row, prev_total_rows)];
374 line_t &qline = row_buf [row];
413 375
414 free (screen.text); screen.text = tp; 376 qline = pline;
415 free (screen.rend); screen.rend = rp; 377 lresize (qline);
416 free (screen.tlen); screen.tlen = tl; 378 }
417 379
418 for (p = 0; p < total_rows; p++) printf ("P %p %d\n", save[p].t, save[p].l);//D 380 for (int row = prev_nrow; row < nrow; row++)
381 {
382 row_buf [row].clear (); scr_blank_screen_mem (row_buf [row], DEFAULT_RSTYLE);
383 }
384
385 term_start = 0;
386 view_start = 0;
387 }
388
389#ifdef DEBUG_STRICT
390 for (int i = -nsaved; i < nrow; i++)
391 assert (ROW (i).t);
419#endif 392#endif
393
394 free (old_buf);
395 delete old_ta;
396 delete old_ra;
397
398 clamp_it (screen.cur.row, 0, nrow - 1);
399 clamp_it (screen.cur.col, 0, ncol - 1);
420 400
421 if (tabs) 401 if (tabs)
422 free (tabs); 402 free (tabs);
423 } 403 }
424 404
425 prev_nrow = nrow; 405 prev_nrow = nrow;
426 prev_ncol = ncol; 406 prev_ncol = ncol;
427 407
428 tabs = (char *)rxvt_malloc (ncol * sizeof (char)); 408 tabs = (char *)rxvt_malloc (ncol * sizeof (char));
429 409
430 for (p = 0; p < ncol; p++) 410 for (int col = ncol; col--; )
431 tabs[p] = (p % TABSIZE == 0) ? 1 : 0; 411 tabs [col] = col % TABSIZE == 0;
432 412
433 tt_winch (); 413 tt_winch ();
434}
435
436void
437rxvt_term::scr_reset_realloc ()
438{
439 swap_save = (line_t *) rxvt_realloc (swap_save , nrow * sizeof (line_t));
440 drawn = (line_t *) rxvt_realloc (drawn , nrow * sizeof (line_t));
441 buf = (line_t *) rxvt_realloc (buf , nrow * sizeof (line_t));
442 save = (line_t *) rxvt_realloc (save , total_rows * sizeof (line_t));
443} 414}
444 415
445/* ------------------------------------------------------------------------- */ 416/* ------------------------------------------------------------------------- */
446/* 417/*
447 * Free everything. That way malloc debugging can find leakage. 418 * Free everything. That way malloc debugging can find leakage.
450rxvt_term::scr_release () 421rxvt_term::scr_release ()
451{ 422{
452 delete talloc; talloc = 0; 423 delete talloc; talloc = 0;
453 delete ralloc; ralloc = 0; 424 delete ralloc; ralloc = 0;
454 425
455 free (save); 426 free (row_buf);
456 free (swap_save); 427 free (swap_buf);
457 free (drawn); 428 free (drawn_buf);
458 free (buf); 429 free (temp_buf);
459 free (tabs); 430 free (tabs);
431
432 row_buf = 0; // signal that we freed all the arrays
460} 433}
461 434
462/* ------------------------------------------------------------------------- */ 435/* ------------------------------------------------------------------------- */
463/* 436/*
464 * Hard reset 437 * Hard reset
515 set_font_style (); 488 set_font_style ();
516 break; 489 break;
517 } 490 }
518 491
519 /* boundary check in case screen size changed between SAVE and RESTORE */ 492 /* boundary check in case screen size changed between SAVE and RESTORE */
520 MIN_IT (s->cur.row, nrow - 1); 493 min_it (s->cur.row, nrow - 1);
521 MIN_IT (s->cur.col, ncol - 1); 494 min_it (s->cur.col, ncol - 1);
522#ifdef DEBUG_STRICT 495#ifdef DEBUG_STRICT
523 assert (s->cur.row >= 0); 496 assert (s->cur.row >= 0);
524 assert (s->cur.col >= 0); 497 assert (s->cur.col >= 0);
525#else /* drive with your eyes closed */
526 MAX_IT (s->cur.row, 0);
527 MAX_IT (s->cur.col, 0);
528#endif 498#endif
529} 499}
530 500
531/* ------------------------------------------------------------------------- */ 501/* ------------------------------------------------------------------------- */
532/* 502/*
543 if (current_screen == scrn) 513 if (current_screen == scrn)
544 return scrn; 514 return scrn;
545 515
546 selection_check (2); /* check for boundary cross */ 516 selection_check (2); /* check for boundary cross */
547 517
548 SWAP_IT (scrn, current_screen, int); 518 int i = current_screen; current_screen = scrn; scrn = i;
549 519
550 SWAP_IT (screen.cur.row, swap.cur.row, int16_t); 520 ::swap (screen.cur.row, swap.cur.row);
551 SWAP_IT (screen.cur.col, swap.cur.col, int16_t); 521 ::swap (screen.cur.col, swap.cur.col);
552 MAX_IT (screen.cur.row, 0); 522
553 MIN_IT (screen.cur.row, (int32_t)prev_nrow - 1); 523 screen.cur.row = clamp (screen.cur.row, 0, prev_nrow - 1);
554 MAX_IT (screen.cur.col, 0); 524 screen.cur.col = clamp (screen.cur.col, 0, prev_ncol - 1);
555 MIN_IT (screen.cur.col, (int32_t)prev_ncol - 1);
556 525
557#if NSCREENS 526#if NSCREENS
558 if (options & Opt_secondaryScreen) 527 if (options & Opt_secondaryScreen)
559 { 528 {
560 num_scr = 0; 529 num_scr = 0;
561 530
562 for (int i = nrow; i--; ) 531 for (int i = prev_nrow; i--; )
563 SWAP_IT (ROW(i), swap_save[i], line_t); 532 ::swap (ROW(i), swap_buf [i]);
564 533
565 SWAP_IT (screen.charset, swap.charset, int16_t); 534 ::swap (screen.charset, swap.charset);
566 SWAP_IT (screen.flags, swap.flags, int); 535 ::swap (screen.flags, swap.flags);
567 screen.flags |= Screen_VisibleCursor; 536 screen.flags |= Screen_VisibleCursor;
568 swap.flags |= Screen_VisibleCursor; 537 swap.flags |= Screen_VisibleCursor;
569 } 538 }
570 else 539 else
571#endif 540#endif
694 // use a simple and robust scrolling algorithm, this 663 // use a simple and robust scrolling algorithm, this
695 // part of scr_scroll_text is not time-critical. 664 // part of scr_scroll_text is not time-critical.
696 665
697 int rows = row2 - row1 + 1; 666 int rows = row2 - row1 + 1;
698 667
668 min_it (count, rows);
669
699 for (int row = 0; row < rows; row++) 670 for (int row = 0; row < rows; row++)
700 { 671 {
701 buf [row] = ROW(row1 + (row + count + rows) % rows); 672 temp_buf [row] = ROW(row1 + (row + count + rows) % rows);
702 673
703 if (!IN_RANGE_EXC (row + count, 0, rows)) 674 if (!IN_RANGE_EXC (row + count, 0, rows))
704 scr_blank_screen_mem (buf [row], rstyle); 675 scr_blank_screen_mem (temp_buf [row], rstyle);
705 } 676 }
706 677
707 for (int row = 0; row < rows; row++) 678 for (int row = 0; row < rows; row++)
708 ROW(row1 + row) = buf [row]; 679 ROW(row1 + row) = temp_buf [row];
709 } 680 }
710 681
711 return count; 682 return count;
712} 683}
713 684
731 last_col = ncol; 702 last_col = ncol;
732 703
733 if (nlines > 0) 704 if (nlines > 0)
734 { 705 {
735 nlines += screen.cur.row - screen.bscroll; 706 nlines += screen.cur.row - screen.bscroll;
736 if ((nlines > 0) 707 if (nlines > 0
737 && (screen.tscroll == 0) 708 && screen.tscroll == 0
738 && (screen.bscroll == (nrow - 1))) 709 && screen.bscroll == (nrow - 1))
739 { 710 {
740 /* _at least_ this many lines need to be scrolled */ 711 /* _at least_ this many lines need to be scrolled */
741 scr_scroll_text (screen.tscroll, screen.bscroll, nlines); 712 scr_scroll_text (screen.tscroll, screen.bscroll, nlines);
742 screen.cur.row -= nlines; 713 screen.cur.row -= nlines;
743 } 714 }
744 } 715 }
745 716
746#ifdef DEBUG_STRICT 717#ifdef DEBUG_STRICT
747 assert (screen.cur.col < last_col); 718 assert (screen.cur.col < last_col);
748 assert ((screen.cur.row < nrow) 719 assert (screen.cur.row < nrow
749 && (screen.cur.row >= - (int32_t)nsaved)); 720 && screen.cur.row >= -nsaved);
750#else /* drive with your eyes closed */
751 MIN_IT (screen.cur.col, last_col - 1);
752 MIN_IT (screen.cur.row, (int32_t)nrow - 1);
753 MAX_IT (screen.cur.row, - (int32_t)nsaved);
754#endif 721#endif
755 row = screen.cur.row; 722 row = screen.cur.row;
756 723
757 checksel = selection.op && current_screen == selection.screen ? 1 : 0; 724 checksel = selection.op && current_screen == selection.screen ? 1 : 0;
758 725
764 731
765 if (c < 0x20) 732 if (c < 0x20)
766 if (c == C0_LF) 733 if (c == C0_LF)
767 { 734 {
768 if (!line->is_longer ()) /* XXX: think about this */ 735 if (!line->is_longer ()) /* XXX: think about this */
769 MAX_IT (line->l, screen.cur.col); 736 max_it (line->l, screen.cur.col);
770 737
771 screen.flags &= ~Screen_WrapNext; 738 screen.flags &= ~Screen_WrapNext;
772 739
773 if (screen.cur.row == screen.bscroll) 740 if (screen.cur.row == screen.bscroll)
774 scr_scroll_text (screen.tscroll, screen.bscroll, 1); 741 scr_scroll_text (screen.tscroll, screen.bscroll, 1);
779 continue; 746 continue;
780 } 747 }
781 else if (c == C0_CR) 748 else if (c == C0_CR)
782 { 749 {
783 if (!line->is_longer ()) /* XXX: think about this */ 750 if (!line->is_longer ()) /* XXX: think about this */
784 MAX_IT (line->l, screen.cur.col); 751 max_it (line->l, screen.cur.col);
785 752
786 screen.flags &= ~Screen_WrapNext; 753 screen.flags &= ~Screen_WrapNext;
787 screen.cur.col = 0; 754 screen.cur.col = 0;
788 continue; 755 continue;
789 } 756 }
965#endif 932#endif
966 } 933 }
967 } 934 }
968 935
969 if (!line->is_longer ()) /* XXX: think about this */ 936 if (!line->is_longer ()) /* XXX: think about this */
970 MAX_IT (line->l, screen.cur.col); 937 max_it (line->l, screen.cur.col);
971 938
972#ifdef DEBUG_STRICT 939#ifdef DEBUG_STRICT
973 assert (screen.cur.row >= 0); 940 assert (screen.cur.row >= 0);
974#else /* drive with your eyes closed */
975 MAX_IT (screen.cur.row, 0);
976#endif 941#endif
977} 942}
978 943
979/* ------------------------------------------------------------------------- */ 944/* ------------------------------------------------------------------------- */
980/* 945/*
1046 if (ht && options & Opt_pastableTabs) 1011 if (ht && options & Opt_pastableTabs)
1047 { 1012 {
1048 base_rend = SET_FONT (base_rend, 0); 1013 base_rend = SET_FONT (base_rend, 0);
1049 1014
1050 if (!l.is_longer ()) /* XXX: think about this */ 1015 if (!l.is_longer ()) /* XXX: think about this */
1051 MAX_IT (l.l, x); 1016 max_it (l.l, x);
1052 1017
1053 i = screen.cur.col; 1018 i = screen.cur.col;
1054 1019
1055 l.t[i] = '\t'; 1020 l.t[i] = '\t';
1056 l.r[i] = base_rend; 1021 l.r[i] = base_rend;
1135{ 1100{
1136 want_refresh = 1; 1101 want_refresh = 1;
1137 ZERO_SCROLLBACK (); 1102 ZERO_SCROLLBACK ();
1138 1103
1139 screen.cur.col = relative & C_RELATIVE ? screen.cur.col + col : col; 1104 screen.cur.col = relative & C_RELATIVE ? screen.cur.col + col : col;
1140 MAX_IT (screen.cur.col, 0); 1105 clamp_it (screen.cur.col, 0, ncol - 1);
1141 MIN_IT (screen.cur.col, (int32_t)ncol - 1);
1142 1106
1143 screen.flags &= ~Screen_WrapNext; 1107 screen.flags &= ~Screen_WrapNext;
1144 1108
1145 if (relative & R_RELATIVE) 1109 if (relative & R_RELATIVE)
1146 { 1110 {
1164 else 1128 else
1165 { 1129 {
1166 if (screen.flags & Screen_Relative) 1130 if (screen.flags & Screen_Relative)
1167 { /* relative origin mode */ 1131 { /* relative origin mode */
1168 screen.cur.row = row + screen.tscroll; 1132 screen.cur.row = row + screen.tscroll;
1169 MIN_IT (screen.cur.row, screen.bscroll); 1133 min_it (screen.cur.row, screen.bscroll);
1170 } 1134 }
1171 else 1135 else
1172 screen.cur.row = row; 1136 screen.cur.row = row;
1173 } 1137 }
1174 1138
1175 MAX_IT (screen.cur.row, 0); 1139 clamp_it (screen.cur.row, 0, nrow - 1);
1176 MIN_IT (screen.cur.row, (int32_t)nrow - 1);
1177} 1140}
1178 1141
1179/* ------------------------------------------------------------------------- */ 1142/* ------------------------------------------------------------------------- */
1180/* 1143/*
1181 * direction should be UP or DN 1144 * direction should be UP or DN
1196 || (screen.cur.row == screen.tscroll && direction == DN)) 1159 || (screen.cur.row == screen.tscroll && direction == DN))
1197 scr_scroll_text (screen.tscroll, screen.bscroll, dirn); 1160 scr_scroll_text (screen.tscroll, screen.bscroll, dirn);
1198 else 1161 else
1199 screen.cur.row += dirn; 1162 screen.cur.row += dirn;
1200 1163
1201 MAX_IT (screen.cur.row, 0); 1164 clamp_it (screen.cur.row, 0, nrow - 1);
1202 MIN_IT (screen.cur.row, (int32_t)nrow - 1);
1203 selection_check (0); 1165 selection_check (0);
1204} 1166}
1205 1167
1206/* ------------------------------------------------------------------------- */ 1168/* ------------------------------------------------------------------------- */
1207/* 1169/*
1225 switch (mode) 1187 switch (mode)
1226 { 1188 {
1227 case 0: /* erase to end of line */ 1189 case 0: /* erase to end of line */
1228 col = screen.cur.col; 1190 col = screen.cur.col;
1229 num = ncol - col; 1191 num = ncol - col;
1230 MIN_IT (ROW(row).l, (int16_t)col); 1192 min_it (ROW(row).l, col);
1231 if (ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur) 1193 if (ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur)
1232 || ROWCOL_IN_ROW_AT_OR_AFTER (selection.end, screen.cur)) 1194 || ROWCOL_IN_ROW_AT_OR_AFTER (selection.end, screen.cur))
1233 CLEAR_SELECTION (); 1195 CLEAR_SELECTION ();
1234 break; 1196 break;
1235 case 1: /* erase to beginning of line */ 1197 case 1: /* erase to beginning of line */
1302 CLEAR_SELECTION (); 1264 CLEAR_SELECTION ();
1303 1265
1304 if (row >= nrow) /* Out Of Bounds */ 1266 if (row >= nrow) /* Out Of Bounds */
1305 return; 1267 return;
1306 1268
1307 MIN_IT (num, (nrow - row)); 1269 min_it (num, nrow - row);
1308 1270
1309 if (rstyle & (RS_RVid | RS_Uline)) 1271 if (rstyle & (RS_RVid | RS_Uline))
1310 ren = (rend_t) ~RS_None; 1272 ren = (rend_t) ~RS_None;
1311 else if (GET_BASEBG (rstyle) == Color_bg) 1273 else if (GET_BASEBG (rstyle) == Color_bg)
1312 { 1274 {
1325 1287
1326 for (; num--; row++) 1288 for (; num--; row++)
1327 { 1289 {
1328 scr_blank_screen_mem (ROW (row), rstyle); 1290 scr_blank_screen_mem (ROW (row), rstyle);
1329 ROW (row).l = 0; 1291 ROW (row).l = 0;
1330 scr_blank_line (drawn[row], 0, ncol, ren); 1292 scr_blank_line (drawn_buf [row], 0, ncol, ren);
1331 } 1293 }
1332} 1294}
1333 1295
1334#if ENABLE_FRILLS 1296#if ENABLE_FRILLS
1335void 1297void
1420 return; 1382 return;
1421 1383
1422 scr_do_wrap (); 1384 scr_do_wrap ();
1423 1385
1424 selection_check (1); 1386 selection_check (1);
1425 MIN_IT (count, (ncol - screen.cur.col)); 1387 min_it (count, ncol - screen.cur.col);
1426 1388
1427 row = screen.cur.row; 1389 row = screen.cur.row;
1428 1390
1429 line_t *line = &ROW(row); 1391 line_t *line = &ROW(row);
1430 1392
1438 } 1400 }
1439 1401
1440 if (!line->is_longer ()) 1402 if (!line->is_longer ())
1441 { 1403 {
1442 line->l += count; 1404 line->l += count;
1443 MIN_IT (line->l, ncol); 1405 min_it (line->l, ncol);
1444 } 1406 }
1445 1407
1446 if (selection.op && current_screen == selection.screen 1408 if (selection.op && current_screen == selection.screen
1447 && ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur)) 1409 && ROWCOL_IN_ROW_AT_OR_AFTER (selection.beg, screen.cur))
1448 { 1410 {
1509 * XTERM_SEQ: Set region <top> - <bot> inclusive: ESC [ <top> ; <bot> r 1471 * XTERM_SEQ: Set region <top> - <bot> inclusive: ESC [ <top> ; <bot> r
1510 */ 1472 */
1511void 1473void
1512rxvt_term::scr_scroll_region (int top, int bot) 1474rxvt_term::scr_scroll_region (int top, int bot)
1513{ 1475{
1514 MAX_IT (top, 0); 1476 max_it (top, 0);
1515 MIN_IT (bot, (int)nrow - 1); 1477 min_it (bot, nrow - 1);
1516 1478
1517 if (top > bot) 1479 if (top > bot)
1518 return; 1480 return;
1519 1481
1520 screen.tscroll = top; 1482 screen.tscroll = top;
1618 XGCValues gcvalue; 1580 XGCValues gcvalue;
1619 1581
1620 if (rvideo != mode) 1582 if (rvideo != mode)
1621 { 1583 {
1622 rvideo = mode; 1584 rvideo = mode;
1623 SWAP_IT (pix_colors[Color_fg], pix_colors[Color_bg], rxvt_color); 1585 ::swap (pix_colors[Color_fg], pix_colors[Color_bg]);
1624#if XPM_BACKGROUND 1586#if XPM_BACKGROUND
1625 if (bgPixmap.pixmap == None) 1587 if (bgPixmap.pixmap == None)
1626#endif 1588#endif
1627#if TRANSPARENT 1589#if TRANSPARENT
1628 if (! (options & Opt_transparent) || am_transparent == 0) 1590 if (! (options & Opt_transparent) || am_transparent == 0)
1724 bool found = false; 1686 bool found = false;
1725 1687
1726 for (int i = 0; i < nrow; i++) 1688 for (int i = 0; i < nrow; i++)
1727 { 1689 {
1728 int col = 0; 1690 int col = 0;
1729 rend_t *drp = drawn[i].r; 1691 rend_t *drp = drawn_buf[i].r;
1730 1692
1731 for (; col < ncol; col++, drp++) 1693 for (; col < ncol; col++, drp++)
1732 if ((*drp & mask) == value) 1694 if ((*drp & mask) == value)
1733 { 1695 {
1734 found = true; 1696 found = true;
1752rxvt_term::scr_expose (int x, int y, int ewidth, int eheight, bool refresh) 1714rxvt_term::scr_expose (int x, int y, int ewidth, int eheight, bool refresh)
1753{ 1715{
1754 int i; 1716 int i;
1755 row_col_t rc[RC_COUNT]; 1717 row_col_t rc[RC_COUNT];
1756 1718
1757 if (!drawn) /* sanity check */ 1719 if (!drawn_buf) /* sanity check */
1758 return; 1720 return;
1759 1721
1760#ifndef NO_SLOW_LINK_SUPPORT 1722#ifndef NO_SLOW_LINK_SUPPORT
1761 if (refresh_type == FAST_REFRESH && !display->is_local) 1723 if (refresh_type == FAST_REFRESH && !display->is_local)
1762 { 1724 {
1763 y = 0; 1725 y = 0;
1764 eheight = height; 1726 eheight = height;
1765 } 1727 }
1766#endif
1767
1768#ifdef DEBUG_STRICT
1769 x = max (x, 0);
1770 x = min (x, (int)width);
1771 y = max (y, 0);
1772 y = min (y, (int)height);
1773#endif 1728#endif
1774 1729
1775 /* round down */ 1730 /* round down */
1776 rc[PART_BEG].col = Pixel2Col (x); 1731 rc[PART_BEG].col = Pixel2Col (x);
1777 rc[PART_BEG].row = Pixel2Row (y); 1732 rc[PART_BEG].row = Pixel2Row (y);
1780 rc[PART_END].row = Pixel2Row (y + eheight + fheight - 1); 1735 rc[PART_END].row = Pixel2Row (y + eheight + fheight - 1);
1781 1736
1782 /* sanity checks */ 1737 /* sanity checks */
1783 for (i = PART_BEG; i < RC_COUNT; i++) 1738 for (i = PART_BEG; i < RC_COUNT; i++)
1784 { 1739 {
1785 MIN_IT (rc[i].col, ncol - 1); 1740 min_it (rc[i].col, ncol - 1);
1786 MIN_IT (rc[i].row, nrow - 1); 1741 min_it (rc[i].row, nrow - 1);
1787 } 1742 }
1788 1743
1789 for (i = rc[PART_BEG].row; i <= rc[PART_END].row; i++) 1744 for (i = rc[PART_BEG].row; i <= rc[PART_END].row; i++)
1790 fill_text (&drawn[i].t[rc[PART_BEG].col], 0, rc[PART_END].col - rc[PART_BEG].col + 1); 1745 fill_text (&drawn_buf[i].t[rc[PART_BEG].col], 0, rc[PART_END].col - rc[PART_BEG].col + 1);
1791 1746
1792 if (refresh) 1747 if (refresh)
1793 scr_refresh (SLOW_REFRESH); 1748 scr_refresh (SLOW_REFRESH);
1794} 1749}
1795 1750
2053 if (screen.cur.row + view_start != ocrow 2008 if (screen.cur.row + view_start != ocrow
2054 || screen.cur.col != oldcursor.col) 2009 || screen.cur.col != oldcursor.col)
2055 { 2010 {
2056 if (ocrow < nrow 2011 if (ocrow < nrow
2057 && oldcursor.col < ncol) 2012 && oldcursor.col < ncol)
2058 drawn[ocrow].r[oldcursor.col] ^= (RS_RVid | RS_Uline); 2013 drawn_buf[ocrow].r[oldcursor.col] ^= (RS_RVid | RS_Uline);
2059 2014
2060 if (focus || !showcursor) 2015 if (focus || !showcursor)
2061 oldcursor.row = -1; 2016 oldcursor.row = -1;
2062 else 2017 else
2063 setoldcursor = 1; 2018 setoldcursor = 1;
2102 for (; j-- >= 0; row += (i > 0 ? 1 : -1)) 2057 for (; j-- >= 0; row += (i > 0 ? 1 : -1))
2103 { 2058 {
2104 if (row + i >= 0 && row + i < nrow && row + i != ocrow) 2059 if (row + i >= 0 && row + i < nrow && row + i != ocrow)
2105 { 2060 {
2106 line_t s = ROW(row - view_start); 2061 line_t s = ROW(row - view_start);
2107 line_t d = drawn[row]; 2062 line_t d = drawn_buf[row];
2108 line_t d2 = drawn[row + i]; 2063 line_t d2 = drawn_buf[row + i];
2109 2064
2110 for (nits = 0, col = ncol; col--; ) 2065 for (nits = 0, col = ncol; col--; )
2111 if (s.t[col] != d2.t[col] || s.r[col] != d2.r[col]) 2066 if (s.t[col] != d2.t[col] || s.r[col] != d2.r[col])
2112 nits--; 2067 nits--;
2113 else if (s.t[col] != d.t[col] || s.r[col] != d.r[col]) 2068 else if (s.t[col] != d.t[col] || s.r[col] != d.r[col])
2131 2086
2132 if (len != -1) 2087 if (len != -1)
2133 { 2088 {
2134 /* also comes here at end if needed because of >= above */ 2089 /* also comes here at end if needed because of >= above */
2135 if (wlen < len) 2090 if (wlen < len)
2136 SWAP_IT (wlen, len, int); 2091 ::swap (wlen, len);
2137 2092
2138 XCopyArea (display->display, vt, vt, 2093 XCopyArea (display->display, vt, vt,
2139 gc, 0, Row2Pixel (len + i), 2094 gc, 0, Row2Pixel (len + i),
2140 (unsigned int)TermWin_TotalWidth (), 2095 (unsigned int)TermWin_TotalWidth (),
2141 (unsigned int)Height2Pixel (wlen - len + 1), 2096 (unsigned int)Height2Pixel (wlen - len + 1),
2151 */ 2106 */
2152 for (row = 0; row < nrow; row++) 2107 for (row = 0; row < nrow; row++)
2153 { 2108 {
2154 text_t *stp = ROW(row - view_start).t; 2109 text_t *stp = ROW(row - view_start).t;
2155 rend_t *srp = ROW(row - view_start).r; 2110 rend_t *srp = ROW(row - view_start).r;
2156 text_t *dtp = drawn[row].t; 2111 text_t *dtp = drawn_buf[row].t;
2157 rend_t *drp = drawn[row].r; 2112 rend_t *drp = drawn_buf[row].r;
2158 2113
2159 /* 2114 /*
2160 * E2: OK, now the real pass 2115 * E2: OK, now the real pass
2161 */ 2116 */
2162 int ypixel = (int)Row2Pixel (row); 2117 int ypixel = (int)Row2Pixel (row);
2273 fore = Color_UL; 2228 fore = Color_UL;
2274#endif 2229#endif
2275 2230
2276 if (invert) 2231 if (invert)
2277 { 2232 {
2278 SWAP_IT (fore, back, int); 2233 ::swap (fore, back);
2279 2234
2280#ifndef NO_BOLD_UNDERLINE_REVERSE 2235#ifndef NO_BOLD_UNDERLINE_REVERSE
2281 if (ISSET_PIXCOLOR (Color_RV)) 2236 if (ISSET_PIXCOLOR (Color_RV))
2282 back = Color_RV; 2237 back = Color_RV;
2283 2238
2375 2330
2376 while (col && ROW(screen.cur.row).t[col] == NOCHAR) 2331 while (col && ROW(screen.cur.row).t[col] == NOCHAR)
2377 col--; 2332 col--;
2378 2333
2379 while (col + cursorwidth < ncol 2334 while (col + cursorwidth < ncol
2380 && drawn[oldcursor.row].t[col + cursorwidth] == NOCHAR) 2335 && drawn_buf[oldcursor.row].t[col + cursorwidth] == NOCHAR)
2381 cursorwidth++; 2336 cursorwidth++;
2382 2337
2383#ifndef NO_CURSORCOLOR 2338#ifndef NO_CURSORCOLOR
2384 if (ISSET_PIXCOLOR (Color_cursor)) 2339 if (ISSET_PIXCOLOR (Color_cursor))
2385 XSetForeground (display->display, gc, pix_colors[Color_cursor]); 2340 XSetForeground (display->display, gc, pix_colors[Color_cursor]);
2417 2372
2418void 2373void
2419rxvt_term::scr_remap_chars () 2374rxvt_term::scr_remap_chars ()
2420{ 2375{
2421 for (int i = total_rows; i--; ) 2376 for (int i = total_rows; i--; )
2422 scr_remap_chars (save[i]); 2377 scr_remap_chars (row_buf [i]);
2423 2378
2424 for (int i = nrow; i--; ) 2379 for (int i = nrow; i--; )
2425 { 2380 {
2426 scr_remap_chars (drawn[i]); 2381 scr_remap_chars (drawn_buf [i]);
2427 scr_remap_chars (swap_save[i]); 2382 scr_remap_chars (swap_buf [i]);
2428 } 2383 }
2429} 2384}
2430 2385
2431void 2386void
2432rxvt_term::scr_recolour () 2387rxvt_term::scr_recolour ()
2529 char r1[] = "\n"; 2484 char r1[] = "\n";
2530 2485
2531 for (row = saveLines - nsaved; 2486 for (row = saveLines - nsaved;
2532 row < saveLines + nrow - 1; row++) 2487 row < saveLines + nrow - 1; row++)
2533 { 2488 {
2534 width = save[row].l >= 0 ? save[row].l 2489 width = row_buf[row].l >= 0 ? row_buf[row].l
2535 : ncol; 2490 : ncol;
2536 for (towrite = width; towrite; towrite -= wrote) 2491 for (towrite = width; towrite; towrite -= wrote)
2537 { 2492 {
2538 wrote = write (fd, & (save[row].t[width - towrite]), 2493 wrote = write (fd, & (row_buf[row].t[width - towrite]),
2539 towrite); 2494 towrite);
2540 if (wrote < 0) 2495 if (wrote < 0)
2541 return; /* XXX: death, no report */ 2496 return; /* XXX: death, no report */
2542 } 2497 }
2543 if (save[row].l >= 0) 2498 if (row_buf[row].l >= 0)
2544 if (write (fd, r1, 1) <= 0) 2499 if (write (fd, r1, 1) <= 0)
2545 return; /* XXX: death, no report */ 2500 return; /* XXX: death, no report */
2546 } 2501 }
2547} 2502}
2548#endif 2503#endif
3025 want_refresh = 1; 2980 want_refresh = 1;
3026 2981
3027 selection.mark.row = row - view_start; 2982 selection.mark.row = row - view_start;
3028 selection.mark.col = col; 2983 selection.mark.col = col;
3029 2984
3030 selection.mark.row = min (max (selection.mark.row, -nsaved), nrow - 1); 2985 selection.mark.row = clamp (selection.mark.row, -nsaved, nrow - 1);
3031 selection.mark.col = min (max (selection.mark.col, 0), ncol - 1); 2986 selection.mark.col = clamp (selection.mark.col, 0, ncol - 1);
3032 2987
3033 while (selection.mark.col > 0 2988 while (selection.mark.col > 0
3034 && ROW(selection.mark.row).t[selection.mark.col] == NOCHAR) 2989 && ROW(selection.mark.row).t[selection.mark.col] == NOCHAR)
3035 --selection.mark.col; 2990 --selection.mark.col;
3036 2991
3141 * flag == 2 ==> button 3 motion 3096 * flag == 2 ==> button 3 motion
3142 */ 3097 */
3143void 3098void
3144rxvt_term::selection_extend (int x, int y, int flag) 3099rxvt_term::selection_extend (int x, int y, int flag)
3145{ 3100{
3146 int col = min (max (Pixel2Col (x), 0), ncol); 3101 int col = clamp (Pixel2Col (x), 0, ncol);
3147 int row = min (max (Pixel2Row (y), 0), nrow - 1); 3102 int row = clamp (Pixel2Row (y), 0, nrow - 1);
3148 3103
3149 /* 3104 /*
3150 * If we're selecting characters (single click) then we must check first 3105 * If we're selecting characters (single click) then we must check first
3151 * if we are at the same place as the original mark. If we are then 3106 * if we are at the same place as the original mark. If we are then
3152 * select nothing. Otherwise, if we're to the right of the mark, you have to 3107 * select nothing. Otherwise, if we're to the right of the mark, you have to
3365 } 3320 }
3366 } 3321 }
3367 3322
3368#if ENABLE_FRILLS 3323#if ENABLE_FRILLS
3369 if (selection.rect && selection.beg.col > selection.end.col) 3324 if (selection.rect && selection.beg.col > selection.end.col)
3370 SWAP_IT (selection.beg.col, selection.end.col, int); 3325 ::swap (selection.beg.col, selection.end.col);
3371#endif 3326#endif
3372} 3327}
3373 3328
3374#if ENABLE_FRILLS 3329#if ENABLE_FRILLS
3375void 3330void
3573 */ 3528 */
3574void 3529void
3575rxvt_term::pixel_position (int *x, int *y) 3530rxvt_term::pixel_position (int *x, int *y)
3576{ 3531{
3577 *x = Pixel2Col (*x); 3532 *x = Pixel2Col (*x);
3578 /* MAX_IT (*x, 0); MIN_IT (*x, (int)ncol - 1); */ 3533 /* max_it (*x, 0); min_it (*x, (int)ncol - 1); */
3579 *y = Pixel2Row (*y); 3534 *y = Pixel2Row (*y);
3580 /* MAX_IT (*y, 0); MIN_IT (*y, (int)nrow - 1); */ 3535 /* max_it (*y, 0); min_it (*y, (int)nrow - 1); */
3581} 3536}
3582 3537
3583/* ------------------------------------------------------------------------- */ 3538/* ------------------------------------------------------------------------- */
3584#ifdef USE_XIM 3539#ifdef USE_XIM
3585void 3540void
3607 3562
3608 if (x < 0) x = ncol - w; 3563 if (x < 0) x = ncol - w;
3609 if (y < 0) y = nrow - h; 3564 if (y < 0) y = nrow - h;
3610 3565
3611 // make space for border 3566 // make space for border
3612 w += 2; MIN_IT (w, ncol); 3567 w += 2; min_it (w, ncol);
3613 h += 2; MIN_IT (h, nrow); 3568 h += 2; min_it (h, nrow);
3614 3569
3615 x -= 1; MAX_IT (x, 0); 3570 x -= 1; clamp_it (x, 0, ncol - w);
3616 y -= 1; MAX_IT (y, 0); 3571 y -= 1; clamp_it (y, 0, nrow - h);
3617
3618 MIN_IT (x, ncol - w);
3619 MIN_IT (y, nrow - h);
3620 3572
3621 ov_x = x; ov_y = y; 3573 ov_x = x; ov_y = y;
3622 ov_w = w; ov_h = h; 3574 ov_w = w; ov_h = h;
3623 3575
3624 ov_text = new text_t *[h]; 3576 ov_text = new text_t *[h];

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines