The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/wscons/wsemul_vt100var.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* $NetBSD: wsemul_vt100var.h,v 1.8 2004/03/24 17:26:53 drochner Exp $ */
    2 
    3 /*
    4  * Copyright (c) 1998
    5  *      Matthias Drochner.  All rights reserved.
    6  *
    7  * Redistribution and use in source and binary forms, with or without
    8  * modification, are permitted provided that the following conditions
    9  * are met:
   10  * 1. Redistributions of source code must retain the above copyright
   11  *    notice, this list of conditions and the following disclaimer.
   12  * 2. Redistributions in binary form must reproduce the above copyright
   13  *    notice, this list of conditions and the following disclaimer in the
   14  *    documentation and/or other materials provided with the distribution.
   15  *
   16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   26  *
   27  */
   28 
   29 #define VT100_EMUL_NARGS        10      /* max # of args to a command */
   30 
   31 struct wsemul_vt100_emuldata {
   32         const struct wsdisplay_emulops *emulops;
   33         void *emulcookie;
   34         int scrcapabilities;
   35         u_int nrows, ncols, crow, ccol;
   36         long defattr;                   /* default attribute */
   37 
   38         long kernattr;                  /* attribute for kernel output */
   39         void *cbcookie;
   40 #ifdef DIAGNOSTIC
   41         int console;
   42 #endif
   43 
   44         u_int state;                    /* processing state */
   45         int flags;
   46 #define VTFL_LASTCHAR   0x001   /* printed last char on line (below cursor) */
   47 #define VTFL_INSERTMODE 0x002
   48 #define VTFL_APPLKEYPAD 0x004
   49 #define VTFL_APPLCURSOR 0x008
   50 #define VTFL_DECOM      0x010   /* origin mode */
   51 #define VTFL_DECAWM     0x020   /* auto wrap */
   52 #define VTFL_CURSORON   0x040
   53 #define VTFL_NATCHARSET 0x080   /* national replacement charset mode */
   54 #define VTFL_SAVEDCURS  0x100   /* we have a saved cursor state */
   55         long curattr, bkgdattr;         /* currently used attribute */
   56         int attrflags, fgcol, bgcol;    /* properties of curattr */
   57         u_int scrreg_startrow;
   58         u_int scrreg_nrows;
   59         char *tabs;
   60         char *dblwid;
   61         int dw;
   62 
   63         int chartab0, chartab1;
   64         u_int *chartab_G[4];
   65         u_int *isolatin1tab, *decgraphtab, *dectechtab;
   66         u_int *nrctab;
   67         int sschartab; /* single shift */
   68 
   69         int nargs;
   70         u_int args[VT100_EMUL_NARGS]; /* numeric command args (CSI/DCS) */
   71 
   72         char modif1;    /* {>?} in VT100_EMUL_STATE_CSI */
   73         char modif2;    /* {!"$&} in VT100_EMUL_STATE_CSI */
   74 
   75         int designating;        /* substate in VT100_EMUL_STATE_SCS* */
   76 
   77         int dcstype;            /* substate in VT100_EMUL_STATE_STRING */
   78         char *dcsarg;
   79         int dcspos;
   80 #define DCS_MAXLEN 256 /* ??? */
   81 #define DCSTYPE_TABRESTORE 1 /* DCS2$t */
   82 
   83         u_int savedcursor_row, savedcursor_col;
   84         long savedattr, savedbkgdattr;
   85         int savedattrflags, savedfgcol, savedbgcol;
   86         int savedchartab0, savedchartab1;
   87         u_int *savedchartab_G[4];
   88 };
   89 
   90 /* some useful utility macros */
   91 #define ARG(n)                  (edp->args[(n)])
   92 #define DEF1_ARG(n)             (ARG(n) ? ARG(n) : 1)
   93 #define DEFx_ARG(n, x)          (ARG(n) ? ARG(n) : (x))
   94 /* the following two can be negative if we are outside the scrolling region */
   95 #define ROWS_ABOVE      ((int)edp->crow - (int)edp->scrreg_startrow)
   96 #define ROWS_BELOW      ((int)(edp->scrreg_startrow + edp->scrreg_nrows) \
   97                                         - (int)edp->crow - 1)
   98 #define CHECK_DW do { \
   99         if (edp->dblwid && edp->dblwid[edp->crow]) { \
  100                 edp->dw = 1; \
  101                 if (edp->ccol > (edp->ncols >> 1) - 1) \
  102                         edp->ccol = (edp->ncols >> 1) - 1; \
  103         } else \
  104                 edp->dw = 0; \
  105 } while (0)
  106 #define NCOLS           (edp->ncols >> edp->dw)
  107 #define COLS_LEFT       (NCOLS - edp->ccol - 1)
  108 #define COPYCOLS(f, t, n) (*edp->emulops->copycols)(edp->emulcookie, \
  109         edp->crow, (f) << edp->dw, (t) << edp->dw, (n) << edp->dw)
  110 #define ERASECOLS(f, n, a) (*edp->emulops->erasecols)(edp->emulcookie, \
  111         edp->crow, (f) << edp->dw, (n) << edp->dw, a)
  112 
  113 /*
  114  * response to primary DA request
  115  * operating level: 61 = VT100, 62 = VT200, 63 = VT300
  116  * extensions: 1 = 132 cols, 2 = printer port, 6 = selective erase,
  117  *      7 = soft charset, 8 = UDKs, 9 = NRC sets
  118  * VT100 = "033[?1;2c"
  119  */
  120 #define WSEMUL_VT_ID1 "\033[?62;6c"
  121 /*
  122  * response to secondary DA request
  123  * ident code: 24 = VT320
  124  * firmware version
  125  * hardware options: 0 = no options
  126  */
  127 #define WSEMUL_VT_ID2 "\033[>24;20;0c"
  128 
  129 void wsemul_vt100_reset(struct wsemul_vt100_emuldata *);
  130 void wsemul_vt100_scrollup(struct wsemul_vt100_emuldata *, int);
  131 void wsemul_vt100_scrolldown(struct wsemul_vt100_emuldata *, int);
  132 void wsemul_vt100_ed(struct wsemul_vt100_emuldata *, int);
  133 void wsemul_vt100_el(struct wsemul_vt100_emuldata *, int);
  134 void wsemul_vt100_handle_csi(struct wsemul_vt100_emuldata *, u_char);
  135 void wsemul_vt100_handle_dcs(struct wsemul_vt100_emuldata *);
  136 
  137 int wsemul_vt100_translate(void *cookie, keysym_t, char **);
  138 
  139 void vt100_initchartables(struct wsemul_vt100_emuldata *);
  140 void vt100_setnrc(struct wsemul_vt100_emuldata *, int);

Cache object: 0938ef8889a8f20010bedf90298631cb


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.