2007-11-21 13:11:41 +00:00
|
|
|
/* $Id: screen.c,v 1.28 2007-11-21 13:11:41 nicm Exp $ */
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
2007-11-21 13:11:41 +00:00
|
|
|
* Virtual screen.
|
2007-07-09 19:04:12 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-12 13:51:44 +00:00
|
|
|
/* Colour to string. */
|
|
|
|
const char *
|
|
|
|
screen_colourstring(u_char c)
|
|
|
|
{
|
|
|
|
switch (c) {
|
|
|
|
case 0:
|
|
|
|
return ("black");
|
|
|
|
case 1:
|
|
|
|
return ("red");
|
|
|
|
case 2:
|
|
|
|
return ("green");
|
|
|
|
case 3:
|
|
|
|
return ("yellow");
|
|
|
|
case 4:
|
|
|
|
return ("blue");
|
|
|
|
case 5:
|
|
|
|
return ("magenta");
|
|
|
|
case 6:
|
|
|
|
return ("cyan");
|
|
|
|
case 7:
|
|
|
|
return ("white");
|
|
|
|
case 8:
|
|
|
|
return ("default");
|
|
|
|
}
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* String to colour. */
|
|
|
|
u_char
|
|
|
|
screen_stringcolour(const char *s)
|
|
|
|
{
|
|
|
|
if (strcasecmp(s, "black") == 0 || (s[0] == '0' && s[1] == '\0'))
|
|
|
|
return (0);
|
|
|
|
if (strcasecmp(s, "red") == 0 || (s[0] == '1' && s[1] == '\0'))
|
|
|
|
return (1);
|
|
|
|
if (strcasecmp(s, "green") == 0 || (s[0] == '2' && s[1] == '\0'))
|
|
|
|
return (2);
|
|
|
|
if (strcasecmp(s, "yellow") == 0 || (s[0] == '3' && s[1] == '\0'))
|
|
|
|
return (3);
|
|
|
|
if (strcasecmp(s, "blue") == 0 || (s[0] == '4' && s[1] == '\0'))
|
|
|
|
return (4);
|
|
|
|
if (strcasecmp(s, "magenta") == 0 || (s[0] == '5' && s[1] == '\0'))
|
|
|
|
return (5);
|
|
|
|
if (strcasecmp(s, "cyan") == 0 || (s[0] == '6' && s[1] == '\0'))
|
|
|
|
return (6);
|
|
|
|
if (strcasecmp(s, "white") == 0 || (s[0] == '7' && s[1] == '\0'))
|
|
|
|
return (7);
|
|
|
|
if (strcasecmp(s, "default") == 0 || (s[0] == '8' && s[1] == '\0'))
|
|
|
|
return (8);
|
|
|
|
return (255);
|
|
|
|
}
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
/* Create a new screen. */
|
|
|
|
void
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_create(struct screen *s, u_int dx, u_int dy)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-11-20 21:42:29 +00:00
|
|
|
s->dx = dx;
|
|
|
|
s->dy = dy;
|
2007-07-09 19:04:12 +00:00
|
|
|
s->cx = 0;
|
|
|
|
s->cy = 0;
|
|
|
|
|
2007-11-20 18:46:32 +00:00
|
|
|
s->rupper = 0;
|
2007-11-20 21:42:29 +00:00
|
|
|
s->rlower = s->dy - 1;
|
|
|
|
|
2007-11-21 13:11:41 +00:00
|
|
|
s->hsize = 0;
|
|
|
|
s->hlimit = SHRT_MAX;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
s->attr = SCREEN_DEFATTR;
|
|
|
|
s->colr = SCREEN_DEFCOLR;
|
|
|
|
|
|
|
|
s->mode = MODE_CURSOR;
|
|
|
|
*s->title = '\0';
|
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
s->grid_data = xmalloc(dy * (sizeof *s->grid_data));
|
|
|
|
s->grid_attr = xmalloc(dy * (sizeof *s->grid_attr));
|
|
|
|
s->grid_colr = xmalloc(dy * (sizeof *s->grid_colr));
|
|
|
|
screen_make_lines(s, 0, dy);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Resize screen. */
|
|
|
|
void
|
|
|
|
screen_resize(struct screen *s, u_int sx, u_int sy)
|
|
|
|
{
|
2007-11-21 13:11:41 +00:00
|
|
|
u_int i, ox, oy, ny, my;
|
2007-09-21 18:00:58 +00:00
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
if (sx < 1)
|
|
|
|
sx = 1;
|
|
|
|
if (sy < 1)
|
|
|
|
sy = 1;
|
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
ox = s->dx;
|
|
|
|
oy = s->dy;
|
2007-11-21 13:11:41 +00:00
|
|
|
if (sx == ox && sy == oy)
|
|
|
|
return;
|
2007-10-04 19:22:26 +00:00
|
|
|
|
2007-11-21 13:11:41 +00:00
|
|
|
/*
|
|
|
|
* X dimension.
|
|
|
|
*/
|
2007-07-09 19:04:12 +00:00
|
|
|
if (sx != ox) {
|
2007-11-21 13:11:41 +00:00
|
|
|
/* Resize all lines including history. */
|
|
|
|
/* XXX need per-line sizes! */
|
|
|
|
for (i = 0; i < s->hsize + oy; i++) {
|
2007-07-09 19:04:12 +00:00
|
|
|
s->grid_data[i] = xrealloc(s->grid_data[i], sx, 1);
|
|
|
|
s->grid_attr[i] = xrealloc(s->grid_attr[i], sx, 1);
|
|
|
|
s->grid_colr[i] = xrealloc(s->grid_colr[i], sx, 1);
|
|
|
|
if (sx > ox) {
|
2007-11-21 13:11:41 +00:00
|
|
|
screen_fill_cells(s, ox, i, sx - ox,
|
2007-07-09 19:04:12 +00:00
|
|
|
SCREEN_DEFDATA, SCREEN_DEFATTR,
|
|
|
|
SCREEN_DEFCOLR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (s->cx >= sx)
|
|
|
|
s->cx = sx - 1;
|
2007-11-21 13:11:41 +00:00
|
|
|
s->dx = sx;
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-11-21 13:11:41 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Y dimension.
|
|
|
|
*/
|
|
|
|
if (sy == oy)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Size decreasing. */
|
|
|
|
if (sy < oy) {
|
|
|
|
ny = oy - sy;
|
|
|
|
if (s->cy != 0) {
|
|
|
|
/*
|
|
|
|
* The cursor is not at the start. Try to remove as
|
|
|
|
* many lines as possible from the top.
|
|
|
|
*/
|
|
|
|
my = s->cy;
|
|
|
|
if (my > ny)
|
|
|
|
my = ny;
|
|
|
|
|
|
|
|
screen_display_free_lines(s, 0, my);
|
|
|
|
screen_display_move_lines(s, 0, my, oy - my);
|
|
|
|
|
|
|
|
s->cy -= my;
|
|
|
|
oy -= my;
|
|
|
|
}
|
|
|
|
|
|
|
|
ny = oy - sy;
|
|
|
|
if (ny > 0) {
|
|
|
|
/*
|
|
|
|
* Remove any remaining lines from the bottom.
|
|
|
|
*/
|
|
|
|
screen_display_free_lines(s, oy, ny);
|
|
|
|
if (s->cy >= sy)
|
|
|
|
s->cy = sy - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Resize line arrays. */
|
|
|
|
ny = s->hsize + sy;
|
|
|
|
s->grid_data = xrealloc(s->grid_data, ny, sizeof *s->grid_data);
|
|
|
|
s->grid_attr = xrealloc(s->grid_attr, ny, sizeof *s->grid_attr);
|
|
|
|
s->grid_colr = xrealloc(s->grid_colr, ny, sizeof *s->grid_colr);
|
|
|
|
s->dy = sy;
|
|
|
|
|
|
|
|
/* Size increasing. */
|
|
|
|
if (sy > oy)
|
|
|
|
screen_display_make_lines(s, oy, sy - oy);
|
|
|
|
|
|
|
|
s->rupper = 0;
|
|
|
|
s->rlower = s->dy - 1;
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-10-01 14:15:48 +00:00
|
|
|
/* Destroy a screen. */
|
|
|
|
void
|
|
|
|
screen_destroy(struct screen *s)
|
|
|
|
{
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_free_lines(s, 0, s->dy);
|
2007-10-01 14:15:48 +00:00
|
|
|
xfree(s->grid_data);
|
|
|
|
xfree(s->grid_attr);
|
|
|
|
xfree(s->grid_colr);
|
|
|
|
}
|
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
/* Draw a set of lines on the screen. */
|
|
|
|
void
|
2007-11-21 13:11:41 +00:00
|
|
|
screen_draw(struct screen *s, struct buffer *b, u_int py, u_int ny, u_int off)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
2007-11-21 13:11:41 +00:00
|
|
|
u_char attr, colr;
|
|
|
|
u_int i, j, base;
|
2007-07-09 19:04:12 +00:00
|
|
|
|
|
|
|
/* XXX. This is naive and rough right now. */
|
|
|
|
attr = 0;
|
|
|
|
colr = SCREEN_DEFCOLR;
|
|
|
|
|
2007-11-20 18:46:32 +00:00
|
|
|
input_store_two(b, CODE_SCROLLREGION, s->rupper + 1, s->rlower + 1);
|
2007-09-29 10:57:39 +00:00
|
|
|
|
2007-07-09 19:04:12 +00:00
|
|
|
input_store_zero(b, CODE_CURSOROFF);
|
2007-10-01 14:18:42 +00:00
|
|
|
input_store_two(b, CODE_ATTRIBUTES, attr, colr);
|
2007-07-09 19:04:12 +00:00
|
|
|
|
2007-11-21 13:11:41 +00:00
|
|
|
base = screen_y(s, 0);
|
|
|
|
if (off > base)
|
|
|
|
base = 0;
|
|
|
|
else
|
|
|
|
base -= off;
|
|
|
|
|
|
|
|
for (j = py; j < py + ny; j++) {
|
2007-07-09 19:04:12 +00:00
|
|
|
input_store_two(b, CODE_CURSORMOVE, j + 1, 1);
|
|
|
|
|
2007-07-10 10:21:58 +00:00
|
|
|
for (i = 0; i <= screen_last_x(s); i++) {
|
2007-11-21 13:11:41 +00:00
|
|
|
if (s->grid_attr[base + j][i] != attr ||
|
|
|
|
s->grid_colr[base + j][i] != colr) {
|
2007-10-01 14:18:42 +00:00
|
|
|
input_store_two(b, CODE_ATTRIBUTES,
|
2007-11-21 13:11:41 +00:00
|
|
|
s->grid_attr[base + j][i],
|
|
|
|
s->grid_colr[base + j][i]);
|
|
|
|
attr = s->grid_attr[base + j][i];
|
|
|
|
colr = s->grid_colr[base + j][i];
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-11-21 13:11:41 +00:00
|
|
|
input_store8(b, s->grid_data[base + j][i]);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-11-21 13:11:41 +00:00
|
|
|
}
|
2007-07-09 19:04:12 +00:00
|
|
|
input_store_two(b, CODE_CURSORMOVE, s->cy + 1, s->cx + 1);
|
|
|
|
|
2007-10-01 14:18:42 +00:00
|
|
|
input_store_two(b, CODE_ATTRIBUTES, s->attr, s->colr);
|
2007-07-09 19:04:12 +00:00
|
|
|
if (s->mode & MODE_CURSOR)
|
|
|
|
input_store_zero(b, CODE_CURSORON);
|
|
|
|
}
|
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
/* Create a range of lines. */
|
2007-07-09 19:04:12 +00:00
|
|
|
void
|
2007-08-27 09:53:38 +00:00
|
|
|
screen_make_lines(struct screen *s, u_int py, u_int ny)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
2007-08-27 09:53:38 +00:00
|
|
|
for (i = py; i < py + ny; i++) {
|
2007-11-20 21:42:29 +00:00
|
|
|
s->grid_data[i] = xmalloc(s->dx);
|
|
|
|
s->grid_attr[i] = xmalloc(s->dx);
|
|
|
|
s->grid_colr[i] = xmalloc(s->dx);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_fill_lines(
|
|
|
|
s, py, ny, SCREEN_DEFDATA, SCREEN_DEFATTR, SCREEN_DEFCOLR);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
|
|
|
|
/* Free a range of ny lines at py. */
|
2007-07-09 19:04:12 +00:00
|
|
|
void
|
2007-08-27 09:53:38 +00:00
|
|
|
screen_free_lines(struct screen *s, u_int py, u_int ny)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
2007-08-27 09:53:38 +00:00
|
|
|
for (i = py; i < py + ny; i++) {
|
2007-07-09 19:04:12 +00:00
|
|
|
xfree(s->grid_data[i]);
|
|
|
|
xfree(s->grid_attr[i]);
|
|
|
|
xfree(s->grid_colr[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move a range of lines. */
|
|
|
|
void
|
2007-08-27 09:53:38 +00:00
|
|
|
screen_move_lines(struct screen *s, u_int dy, u_int py, u_int ny)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
memmove(
|
2007-08-27 09:53:38 +00:00
|
|
|
&s->grid_data[dy], &s->grid_data[py], ny * (sizeof *s->grid_data));
|
2007-07-09 19:04:12 +00:00
|
|
|
memmove(
|
2007-08-27 09:53:38 +00:00
|
|
|
&s->grid_attr[dy], &s->grid_attr[py], ny * (sizeof *s->grid_attr));
|
2007-07-09 19:04:12 +00:00
|
|
|
memmove(
|
2007-08-27 09:53:38 +00:00
|
|
|
&s->grid_colr[dy], &s->grid_colr[py], ny * (sizeof *s->grid_colr));
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill a range of lines. */
|
|
|
|
void
|
|
|
|
screen_fill_lines(
|
2007-08-27 09:53:38 +00:00
|
|
|
struct screen *s, u_int py, u_int ny, u_char data, u_char attr, u_char colr)
|
2007-07-09 19:04:12 +00:00
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
2007-08-27 09:53:38 +00:00
|
|
|
for (i = py; i < py + ny; i++)
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_fill_cells(s, 0, i, s->dx, data, attr, colr);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|
|
|
|
|
2007-11-20 21:42:29 +00:00
|
|
|
/* Fill a range of cells. */
|
2007-09-29 18:48:04 +00:00
|
|
|
void
|
2007-11-20 21:42:29 +00:00
|
|
|
screen_fill_cells(struct screen *s,
|
|
|
|
u_int px, u_int py, u_int nx, u_char data, u_char attr, u_char colr)
|
2007-09-29 18:48:04 +00:00
|
|
|
{
|
2007-11-20 21:42:29 +00:00
|
|
|
memset(&s->grid_data[py][px], data, nx);
|
|
|
|
memset(&s->grid_attr[py][px], attr, nx);
|
|
|
|
memset(&s->grid_colr[py][px], colr, nx);
|
2007-07-09 19:04:12 +00:00
|
|
|
}
|