[BACK]Return to screen-redraw.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/screen-redraw.c, Revision 1.22

1.22    ! nicm        1: /* $OpenBSD: screen-redraw.c,v 1.21 2012/01/29 09:37:02 nicm Exp $ */
1.1       nicm        2:
                      3: /*
                      4:  * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
                      5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     15:  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     16:  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18:
                     19: #include <sys/types.h>
                     20:
                     21: #include <string.h>
                     22:
                     23: #include "tmux.h"
                     24:
1.15      nicm       25: int    screen_redraw_cell_border1(struct window_pane *, u_int, u_int);
1.7       nicm       26: int    screen_redraw_cell_border(struct client *, u_int, u_int);
1.1       nicm       27: int    screen_redraw_check_cell(struct client *, u_int, u_int);
1.10      nicm       28: void   screen_redraw_draw_number(struct client *, struct window_pane *);
1.1       nicm       29:
1.6       nicm       30: #define CELL_INSIDE 0
1.7       nicm       31: #define CELL_LEFTRIGHT 1
                     32: #define CELL_TOPBOTTOM 2
                     33: #define CELL_TOPLEFT 3
                     34: #define CELL_TOPRIGHT 4
                     35: #define CELL_BOTTOMLEFT 5
                     36: #define CELL_BOTTOMRIGHT 6
                     37: #define CELL_TOPJOIN 7
                     38: #define CELL_BOTTOMJOIN 8
                     39: #define CELL_LEFTJOIN 9
                     40: #define CELL_RIGHTJOIN 10
                     41: #define CELL_JOIN 11
                     42: #define CELL_OUTSIDE 12
1.6       nicm       43:
1.17      nicm       44: #define CELL_BORDERS " xqlkmjwvtun~"
                     45:
1.15      nicm       46: /* Check if cell is on the border of a particular pane. */
                     47: int
                     48: screen_redraw_cell_border1(struct window_pane *wp, u_int px, u_int py)
                     49: {
                     50:        /* Inside pane. */
                     51:        if (px >= wp->xoff && px < wp->xoff + wp->sx &&
                     52:            py >= wp->yoff && py < wp->yoff + wp->sy)
                     53:                return (0);
                     54:
                     55:        /* Left/right borders. */
                     56:        if ((wp->yoff == 0 || py >= wp->yoff - 1) && py <= wp->yoff + wp->sy) {
                     57:                if (wp->xoff != 0 && px == wp->xoff - 1)
                     58:                        return (1);
                     59:                if (px == wp->xoff + wp->sx)
                     60:                        return (1);
                     61:        }
                     62:
                     63:        /* Top/bottom borders. */
                     64:        if ((wp->xoff == 0 || px >= wp->xoff - 1) && px <= wp->xoff + wp->sx) {
                     65:                if (wp->yoff != 0 && py == wp->yoff - 1)
                     66:                        return (1);
                     67:                if (py == wp->yoff + wp->sy)
                     68:                        return (1);
                     69:        }
                     70:
                     71:        /* Outside pane. */
                     72:        return (-1);
                     73: }
                     74:
1.7       nicm       75: /* Check if a cell is on the pane border. */
1.1       nicm       76: int
1.7       nicm       77: screen_redraw_cell_border(struct client *c, u_int px, u_int py)
1.1       nicm       78: {
                     79:        struct window           *w = c->session->curw->window;
                     80:        struct window_pane      *wp;
1.15      nicm       81:        int                      retval;
1.1       nicm       82:
1.7       nicm       83:        /* Check all the panes. */
1.1       nicm       84:        TAILQ_FOREACH(wp, &w->panes, entry) {
1.3       nicm       85:                if (!window_pane_visible(wp))
                     86:                        continue;
1.15      nicm       87:                if ((retval = screen_redraw_cell_border1(wp, px, py)) != -1)
                     88:                        return (retval);
1.7       nicm       89:        }
                     90:
                     91:        return (0);
                     92: }
                     93:
                     94: /* Check if cell inside a pane. */
                     95: int
                     96: screen_redraw_check_cell(struct client *c, u_int px, u_int py)
                     97: {
                     98:        struct window           *w = c->session->curw->window;
                     99:        struct window_pane      *wp;
                    100:        int                      borders;
                    101:
                    102:        if (px > w->sx || py > w->sy)
                    103:                return (CELL_OUTSIDE);
                    104:
                    105:        TAILQ_FOREACH(wp, &w->panes, entry) {
                    106:                if (!window_pane_visible(wp))
                    107:                        continue;
                    108:
                    109:                /* If outside the pane and its border, skip it. */
                    110:                if ((wp->xoff != 0 && px < wp->xoff - 1) ||
                    111:                    px > wp->xoff + wp->sx ||
                    112:                    (wp->yoff != 0 && py < wp->yoff - 1) ||
                    113:                    py > wp->yoff + wp->sy)
                    114:                        continue;
                    115:
                    116:                /* If definitely inside, return so. */
                    117:                if (!screen_redraw_cell_border(c, px, py))
                    118:                        return (CELL_INSIDE);
                    119:
1.14      nicm      120:                /*
1.7       nicm      121:                 * Construct a bitmask of whether the cells to the left (bit
                    122:                 * 4), right, top, and bottom (bit 1) of this cell are borders.
                    123:                 */
                    124:                borders = 0;
                    125:                if (px == 0 || screen_redraw_cell_border(c, px - 1, py))
                    126:                        borders |= 8;
                    127:                if (px <= w->sx && screen_redraw_cell_border(c, px + 1, py))
                    128:                        borders |= 4;
                    129:                if (py == 0 || screen_redraw_cell_border(c, px, py - 1))
                    130:                        borders |= 2;
                    131:                if (py <= w->sy && screen_redraw_cell_border(c, px, py + 1))
                    132:                        borders |= 1;
                    133:
1.14      nicm      134:                /*
1.7       nicm      135:                 * Figure out what kind of border this cell is. Only one bit
                    136:                 * set doesn't make sense (can't have a border cell with no
                    137:                 * others connected).
                    138:                 */
                    139:                switch (borders) {
                    140:                case 15:        /* 1111, left right top bottom */
                    141:                        return (CELL_JOIN);
                    142:                case 14:        /* 1110, left right top */
                    143:                        return (CELL_BOTTOMJOIN);
                    144:                case 13:        /* 1101, left right bottom */
                    145:                        return (CELL_TOPJOIN);
                    146:                case 12:        /* 1100, left right */
                    147:                        return (CELL_TOPBOTTOM);
                    148:                case 11:        /* 1011, left top bottom */
                    149:                        return (CELL_RIGHTJOIN);
                    150:                case 10:        /* 1010, left top */
                    151:                        return (CELL_BOTTOMRIGHT);
                    152:                case 9:         /* 1001, left bottom */
                    153:                        return (CELL_TOPRIGHT);
                    154:                case 7:         /* 0111, right top bottom */
                    155:                        return (CELL_LEFTJOIN);
                    156:                case 6:         /* 0110, right top */
                    157:                        return (CELL_BOTTOMLEFT);
                    158:                case 5:         /* 0101, right bottom */
                    159:                        return (CELL_TOPLEFT);
                    160:                case 3:         /* 0011, top bottom */
                    161:                        return (CELL_LEFTRIGHT);
1.1       nicm      162:                }
                    163:        }
                    164:
1.6       nicm      165:        return (CELL_OUTSIDE);
1.1       nicm      166: }
                    167:
1.4       nicm      168: /* Redraw entire screen. */
1.1       nicm      169: void
1.15      nicm      170: screen_redraw_screen(struct client *c, int status_only, int borders_only)
1.1       nicm      171: {
                    172:        struct window           *w = c->session->curw->window;
1.21      nicm      173:        struct options          *oo = &c->session->options;
1.1       nicm      174:        struct tty              *tty = &c->tty;
                    175:        struct window_pane      *wp;
1.15      nicm      176:        struct grid_cell         active_gc, other_gc;
1.21      nicm      177:        u_int                    i, j, type, top;
                    178:        int                      status, spos, fg, bg;
1.18      nicm      179:
                    180:        /* Suspended clients should not be updated. */
                    181:        if (c->flags & CLIENT_SUSPENDED)
                    182:                return;
1.1       nicm      183:
                    184:        /* Get status line, er, status. */
1.21      nicm      185:        spos = options_get_number(oo, "status-position");
1.4       nicm      186:        if (c->message_string != NULL || c->prompt_string != NULL)
                    187:                status = 1;
                    188:        else
1.21      nicm      189:                status = options_get_number(oo, "status");
                    190:        top = 0;
                    191:        if (status && spos == 0)
                    192:                top = 1;
1.4       nicm      193:
                    194:        /* If only drawing status and it is present, don't need the rest. */
                    195:        if (status_only && status) {
1.21      nicm      196:                if (top)
                    197:                        tty_draw_line(tty, &c->status, 0, 0, 0);
                    198:                else
                    199:                        tty_draw_line(tty, &c->status, 0, 0, tty->sy - 1);
1.9       nicm      200:                tty_reset(tty);
1.4       nicm      201:                return;
                    202:        }
1.1       nicm      203:
1.15      nicm      204:        /* Set up pane border attributes. */
1.22    ! nicm      205:        memcpy(&other_gc, &grid_marker_cell, sizeof other_gc);
        !           206:        memcpy(&active_gc, &grid_marker_cell, sizeof active_gc);
1.17      nicm      207:        active_gc.attr = other_gc.attr = GRID_ATTR_CHARSET;
1.21      nicm      208:        fg = options_get_number(oo, "pane-border-fg");
1.15      nicm      209:        colour_set_fg(&other_gc, fg);
1.21      nicm      210:        bg = options_get_number(oo, "pane-border-bg");
1.15      nicm      211:        colour_set_bg(&other_gc, bg);
1.21      nicm      212:        fg = options_get_number(oo, "pane-active-border-fg");
1.15      nicm      213:        colour_set_fg(&active_gc, fg);
1.21      nicm      214:        bg = options_get_number(oo, "pane-active-border-bg");
1.15      nicm      215:        colour_set_bg(&active_gc, bg);
                    216:
1.6       nicm      217:        /* Draw background and borders. */
1.1       nicm      218:        for (j = 0; j < tty->sy - status; j++) {
1.21      nicm      219:                if (status_only) {
                    220:                        if (spos == 1 && j != tty->sy - 1)
                    221:                                continue;
                    222:                        else if (spos == 0 && j != 0)
                    223:                                break;
                    224:                }
1.1       nicm      225:                for (i = 0; i < tty->sx; i++) {
1.6       nicm      226:                        type = screen_redraw_check_cell(c, i, j);
1.15      nicm      227:                        if (type == CELL_INSIDE)
                    228:                                continue;
                    229:                        if (screen_redraw_cell_border1(w->active, i, j) == 1)
                    230:                                tty_attributes(tty, &active_gc);
                    231:                        else
                    232:                                tty_attributes(tty, &other_gc);
1.21      nicm      233:                        tty_cursor(tty, i, top + j);
1.17      nicm      234:                        tty_putc(tty, CELL_BORDERS[type]);
1.1       nicm      235:                }
                    236:        }
                    237:
1.15      nicm      238:        /* If only drawing borders, that's it. */
                    239:        if (borders_only)
                    240:                return;
                    241:
                    242:        /* Draw the panes, if necessary. */
1.1       nicm      243:        TAILQ_FOREACH(wp, &w->panes, entry) {
1.3       nicm      244:                if (!window_pane_visible(wp))
1.1       nicm      245:                        continue;
1.4       nicm      246:                for (i = 0; i < wp->sy; i++) {
1.21      nicm      247:                        if (status_only) {
                    248:                                if (spos == 1 && wp->yoff + i != tty->sy - 1)
                    249:                                        continue;
                    250:                                else if (spos == 0 && wp->yoff + i != 0)
                    251:                                        break;
                    252:                        }
                    253:                        tty_draw_line(
                    254:                            tty, wp->screen, i, wp->xoff, top + wp->yoff);
1.4       nicm      255:                }
1.10      nicm      256:                if (c->flags & CLIENT_IDENTIFY)
                    257:                        screen_redraw_draw_number(c, wp);
1.1       nicm      258:        }
                    259:
                    260:        /* Draw the status line. */
1.21      nicm      261:        if (status) {
                    262:                if (top)
                    263:                        tty_draw_line(tty, &c->status, 0, 0, 0);
                    264:                else
                    265:                        tty_draw_line(tty, &c->status, 0, 0, tty->sy - 1);
                    266:        }
1.9       nicm      267:        tty_reset(tty);
1.1       nicm      268: }
                    269:
                    270: /* Draw a single pane. */
                    271: void
                    272: screen_redraw_pane(struct client *c, struct window_pane *wp)
                    273: {
1.21      nicm      274:        u_int   i, yoff;
                    275:
                    276:        yoff = wp->yoff;
                    277:        if (status_at_line(c) == 0)
                    278:                yoff++;
1.1       nicm      279:
                    280:        for (i = 0; i < wp->sy; i++)
1.21      nicm      281:                tty_draw_line(&c->tty, wp->screen, i, wp->xoff, yoff);
1.9       nicm      282:        tty_reset(&c->tty);
1.10      nicm      283: }
                    284:
                    285: /* Draw number on a pane. */
                    286: void
                    287: screen_redraw_draw_number(struct client *c, struct window_pane *wp)
                    288: {
                    289:        struct tty              *tty = &c->tty;
                    290:        struct session          *s = c->session;
1.19      nicm      291:        struct options          *oo = &s->options;
1.16      nicm      292:        struct window           *w = wp->window;
1.10      nicm      293:        struct grid_cell         gc;
1.12      nicm      294:        u_int                    idx, px, py, i, j, xoff, yoff;
1.16      nicm      295:        int                      colour, active_colour;
1.10      nicm      296:        char                     buf[16], *ptr;
                    297:        size_t                   len;
                    298:
1.19      nicm      299:        if (window_pane_index(wp, &idx) != 0)
                    300:                fatalx("index not found");
1.10      nicm      301:        len = xsnprintf(buf, sizeof buf, "%u", idx);
                    302:
                    303:        if (wp->sx < len)
                    304:                return;
1.16      nicm      305:        colour = options_get_number(oo, "display-panes-colour");
                    306:        active_colour = options_get_number(oo, "display-panes-active-colour");
1.10      nicm      307:
1.12      nicm      308:        px = wp->sx / 2; py = wp->sy / 2;
                    309:        xoff = wp->xoff; yoff = wp->yoff;
                    310:
1.10      nicm      311:        if (wp->sx < len * 6 || wp->sy < 5) {
1.12      nicm      312:                tty_cursor(tty, xoff + px - len / 2, yoff + py);
1.20      nicm      313:                goto draw_text;
1.10      nicm      314:        }
1.14      nicm      315:
1.10      nicm      316:        px -= len * 3;
                    317:        py -= 2;
                    318:
1.22    ! nicm      319:        memcpy(&gc, &grid_marker_cell, sizeof gc);
1.16      nicm      320:        if (w->active == wp)
                    321:                colour_set_bg(&gc, active_colour);
                    322:        else
                    323:                colour_set_bg(&gc, colour);
1.10      nicm      324:        tty_attributes(tty, &gc);
                    325:        for (ptr = buf; *ptr != '\0'; ptr++) {
                    326:                if (*ptr < '0' || *ptr > '9')
                    327:                        continue;
                    328:                idx = *ptr - '0';
1.14      nicm      329:
1.10      nicm      330:                for (j = 0; j < 5; j++) {
                    331:                        for (i = px; i < px + 5; i++) {
1.12      nicm      332:                                tty_cursor(tty, xoff + i, yoff + py + j);
1.11      nicm      333:                                if (clock_table[idx][j][i - px])
                    334:                                        tty_putc(tty, ' ');
1.10      nicm      335:                        }
                    336:                }
                    337:                px += 6;
                    338:        }
1.20      nicm      339:
                    340:        len = xsnprintf(buf, sizeof buf, "%ux%u", wp->sx, wp->sy);
                    341:        if (wp->sx < len || wp->sy < 6)
                    342:                return;
                    343:        tty_cursor(tty, xoff + wp->sx - len, yoff);
                    344:
                    345: draw_text:
1.22    ! nicm      346:        memcpy(&gc, &grid_marker_cell, sizeof gc);
1.20      nicm      347:        if (w->active == wp)
                    348:                colour_set_fg(&gc, active_colour);
                    349:        else
                    350:                colour_set_fg(&gc, colour);
                    351:        tty_attributes(tty, &gc);
                    352:        tty_puts(tty, buf);
                    353:
                    354:        tty_cursor(tty, 0, 0);
1.1       nicm      355: }