19b934d09SEd Schouten /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
3fe267a55SPedro F. Giffuni *
49b934d09SEd Schouten * Copyright (c) 2009 Ed Schouten <ed@FreeBSD.org>
59b934d09SEd Schouten * All rights reserved.
69b934d09SEd Schouten *
79b934d09SEd Schouten * Redistribution and use in source and binary forms, with or without
89b934d09SEd Schouten * modification, are permitted provided that the following conditions
99b934d09SEd Schouten * are met:
109b934d09SEd Schouten * 1. Redistributions of source code must retain the above copyright
119b934d09SEd Schouten * notice, this list of conditions and the following disclaimer.
129b934d09SEd Schouten * 2. Redistributions in binary form must reproduce the above copyright
139b934d09SEd Schouten * notice, this list of conditions and the following disclaimer in the
149b934d09SEd Schouten * documentation and/or other materials provided with the distribution.
159b934d09SEd Schouten *
169b934d09SEd Schouten * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
179b934d09SEd Schouten * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
189b934d09SEd Schouten * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
199b934d09SEd Schouten * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
209b934d09SEd Schouten * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
219b934d09SEd Schouten * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
229b934d09SEd Schouten * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
239b934d09SEd Schouten * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
249b934d09SEd Schouten * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
259b934d09SEd Schouten * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
269b934d09SEd Schouten * SUCH DAMAGE.
279b934d09SEd Schouten */
289b934d09SEd Schouten
29cd531e74SEd Schouten static inline teken_char_t
teken_scs_process(const teken_t * t,teken_char_t c)3092223bddSPoul-Henning Kamp teken_scs_process(const teken_t *t, teken_char_t c)
319b934d09SEd Schouten {
329b934d09SEd Schouten
33fbcd1b6eSEd Schouten return (t->t_scs[t->t_curscs](t, c));
349b934d09SEd Schouten }
359b934d09SEd Schouten
369b934d09SEd Schouten /* Unicode points for VT100 box drawing. */
37fbcd1b6eSEd Schouten static const uint16_t teken_boxdrawing_unicode[31] = {
389b934d09SEd Schouten 0x25c6, 0x2592, 0x2409, 0x240c, 0x240d, 0x240a, 0x00b0, 0x00b1,
399b934d09SEd Schouten 0x2424, 0x240b, 0x2518, 0x2510, 0x250c, 0x2514, 0x253c, 0x23ba,
409b934d09SEd Schouten 0x23bb, 0x2500, 0x23bc, 0x23bd, 0x251c, 0x2524, 0x2534, 0x252c,
419b934d09SEd Schouten 0x2502, 0x2264, 0x2265, 0x03c0, 0x2260, 0x00a3, 0x00b7
429b934d09SEd Schouten };
439b934d09SEd Schouten
44e7fe3cf1SEd Schouten /* ASCII points for VT100 box drawing. */
45fbcd1b6eSEd Schouten static const uint8_t teken_boxdrawing_8bit[31] = {
46e7fe3cf1SEd Schouten '?', '?', 'H', 'F', 'C', 'L', '?', '?',
47e7fe3cf1SEd Schouten 'N', 'V', '+', '+', '+', '+', '+', '-',
48e7fe3cf1SEd Schouten '-', '-', '-', '-', '+', '+', '+', '+',
49e7fe3cf1SEd Schouten '|', '?', '?', '?', '?', '?', '?',
50fbcd1b6eSEd Schouten };
51fbcd1b6eSEd Schouten
529b934d09SEd Schouten static teken_char_t
teken_scs_special_graphics(const teken_t * t,teken_char_t c)5392223bddSPoul-Henning Kamp teken_scs_special_graphics(const teken_t *t, teken_char_t c)
549b934d09SEd Schouten {
559b934d09SEd Schouten
569b934d09SEd Schouten /* Box drawing. */
579b934d09SEd Schouten if (c >= '`' && c <= '~')
58fbcd1b6eSEd Schouten return (t->t_stateflags & TS_8BIT ?
59fbcd1b6eSEd Schouten teken_boxdrawing_8bit[c - '`'] :
60fbcd1b6eSEd Schouten teken_boxdrawing_unicode[c - '`']);
619b934d09SEd Schouten return (c);
629b934d09SEd Schouten }
639b934d09SEd Schouten
649b934d09SEd Schouten static teken_char_t
teken_scs_uk_national(const teken_t * t,teken_char_t c)6592223bddSPoul-Henning Kamp teken_scs_uk_national(const teken_t *t, teken_char_t c)
669b934d09SEd Schouten {
679b934d09SEd Schouten
689b934d09SEd Schouten /* Pound sign. */
699b934d09SEd Schouten if (c == '#')
70fbcd1b6eSEd Schouten return (t->t_stateflags & TS_8BIT ? 0x9c : 0xa3);
719b934d09SEd Schouten return (c);
729b934d09SEd Schouten }
739b934d09SEd Schouten
749b934d09SEd Schouten static teken_char_t
teken_scs_us_ascii(const teken_t * t,teken_char_t c)7592223bddSPoul-Henning Kamp teken_scs_us_ascii(const teken_t *t, teken_char_t c)
769b934d09SEd Schouten {
779b934d09SEd Schouten
789b934d09SEd Schouten /* No processing. */
7992223bddSPoul-Henning Kamp (void)t;
809b934d09SEd Schouten return (c);
819b934d09SEd Schouten }
82