File: ncurses.c

package info (click to toggle)
chafa 1.18.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,828 kB
  • sloc: ansic: 52,456; xml: 881; sh: 610; makefile: 466; python: 334
file content (217 lines) | stat: -rw-r--r-- 6,232 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/* Example program that shows how to use a Chafa canvas with ncurses.
 *
 * To build:
 *
 * gcc ncurses.c $(pkg-config --libs --cflags chafa) $(ncursesw6-config --libs --cflags) -o ncurses
 */

#include <locale.h>
#include <ncurses.h>
#include <chafa.h>

/* Parameters for gradient pixmap. It will be scaled automatically to fit the canvas,
 * so this just needs to be big enough to avoid it getting too blurry. The number
 * of channels is always four, corresponding to CHAFA_PIXEL_RGBA8_UNASSOCIATED. */
#define PIXMAP_WIDTH 1024
#define PIXMAP_HEIGHT 1024
#define PIXMAP_N_CHANNELS 4

/* Terminal size detected in main loop */
static int screen_width, screen_height;

static ChafaCanvasMode
detect_canvas_mode (void)
{
    /* COLORS is a global variable defined by ncurses. It depends on termcap
     * for the terminal specified in TERM. In order to test the various modes, you
     * could try running this program with either of these:
     *
     * TERM=xterm
     * TERM=xterm-16color
     * TERM=xterm-256color
     * TERM=xterm-direct
     */
    return COLORS >= (1 << 24) ? CHAFA_CANVAS_MODE_TRUECOLOR
        : COLORS >= (1 << 8) ? CHAFA_CANVAS_MODE_INDEXED_240
        : COLORS >= (1 << 4) ? CHAFA_CANVAS_MODE_INDEXED_16
        : COLORS >= (1 << 3) ? CHAFA_CANVAS_MODE_INDEXED_8
        : CHAFA_CANVAS_MODE_FGBG;
}

static ChafaCanvas *
create_canvas (void)
{
    ChafaSymbolMap *symbol_map;
    ChafaCanvasConfig *config;
    ChafaCanvas *canvas;
    ChafaCanvasMode mode = detect_canvas_mode ();

    /* Specify the symbols we want: Box drawing and block elements are both
     * useful and widely supported. */

    symbol_map = chafa_symbol_map_new ();
    chafa_symbol_map_add_by_tags (symbol_map, CHAFA_SYMBOL_TAG_SPACE);
    chafa_symbol_map_add_by_tags (symbol_map, CHAFA_SYMBOL_TAG_BLOCK);
    chafa_symbol_map_add_by_tags (symbol_map, CHAFA_SYMBOL_TAG_BORDER);

    /* Set up a configuration with the symbols and the canvas size in characters */

    config = chafa_canvas_config_new ();
    chafa_canvas_config_set_canvas_mode (config, mode);
    chafa_canvas_config_set_symbol_map (config, symbol_map);

    /* Reserve one row below canvas for status text */
    chafa_canvas_config_set_geometry (config, screen_width, screen_height - 1);

    /* Apply tweaks for low-color modes */

    if (mode == CHAFA_CANVAS_MODE_INDEXED_240)
    {
        /* We get better color fidelity using DIN99d in 240-color mode.
         * This is not needed in 16-color mode because it uses an extra
         * preprocessing step instead, which usually performs better. */
        chafa_canvas_config_set_color_space (config, CHAFA_COLOR_SPACE_DIN99D);
    }

    if (mode == CHAFA_CANVAS_MODE_FGBG)
    {
        /* Enable dithering in monochromatic mode so gradients become
         * somewhat legible. */
        chafa_canvas_config_set_dither_mode (config, CHAFA_DITHER_MODE_ORDERED);
    }

    /* Create canvas */

    canvas = chafa_canvas_new (config);

    chafa_symbol_map_unref (symbol_map);
    chafa_canvas_config_unref (config);
    return canvas;
}

static void
paint_canvas (ChafaCanvas *canvas)
{
    guint8 *pixmap;
    int x, y;

    /* Generate a gradient pixmap */

    pixmap = g_malloc (PIXMAP_WIDTH * PIXMAP_HEIGHT * PIXMAP_N_CHANNELS);

    for (y = 0; y < PIXMAP_HEIGHT; y++)
    {
        for (x = 0; x < PIXMAP_WIDTH; x++)
        {
            guint8 *pixel = pixmap + (y * PIXMAP_WIDTH + x) * PIXMAP_N_CHANNELS;
            pixel [0] = (x * 255) / PIXMAP_WIDTH;
            pixel [1] = (y * 255) / PIXMAP_HEIGHT;
            pixel [2] = 0;
            pixel [3] = 255;
        }
    }

    /* Paint it to the canvas */

    chafa_canvas_draw_all_pixels (canvas,
                                  CHAFA_PIXEL_RGBA8_UNASSOCIATED,
                                  pixmap,
                                  PIXMAP_WIDTH,
                                  PIXMAP_HEIGHT,
                                  PIXMAP_WIDTH * PIXMAP_N_CHANNELS);

    g_free (pixmap);
}

static void
canvas_to_ncurses (ChafaCanvas *canvas)
{
    ChafaCanvasMode mode = detect_canvas_mode ();
    int pair = 256;  /* Reserve lower pairs for application in direct-color mode */
    int x, y;

    for (y = 0; y < screen_height - 1; y++)
    {
        for (x = 0; x < screen_width; x++)
        {
            wchar_t wc [2];
            cchar_t cch;
            int fg, bg;

            /* wchar_t is 32-bit in glibc, but this may not work on e.g. Windows */
            wc [0] = chafa_canvas_get_char_at (canvas, x, y);
            wc [1] = 0;

            if (mode == CHAFA_CANVAS_MODE_TRUECOLOR)
            {
                chafa_canvas_get_colors_at (canvas, x, y, &fg, &bg);
                init_extended_pair (pair, fg, bg);
            }
            else if (mode == CHAFA_CANVAS_MODE_FGBG)
            {
                pair = 0;
            }
            else
            {
                /* In indexed color mode, we've probably got enough pairs
                 * to just let ncurses allocate and reuse as needed. */
                chafa_canvas_get_raw_colors_at (canvas, x, y, &fg, &bg);
                pair = alloc_pair (fg, bg);
            }

            setcchar (&cch, wc, A_NORMAL, -1, &pair);
            mvadd_wch (y, x, &cch);
            pair++;
        }
    }
}

static void
show_image (void)
{
    ChafaCanvas *canvas;

    canvas = create_canvas ();

    paint_canvas (canvas);
    canvas_to_ncurses (canvas);
    mvprintw (screen_height - 1, 0, "%d colors detected. Try resizing, or press any key to exit.", COLORS);

    chafa_canvas_unref (canvas);
}

int
main (int argc, char *argv [])
{
    int running = TRUE;

    /* Set up locale to get proper Unicode */

    setlocale (LC_ALL, "");

    /* Start interactive ncurses session */

    initscr ();
    start_color ();
    use_default_colors ();
    raw ();
    keypad (stdscr, TRUE);
    noecho ();
    curs_set (0);

    /* Keep running until a key is pressed. Handle terminal resize. */

    while (running)
    {
        clear ();
        getmaxyx (stdscr, screen_height, screen_width);
        show_image ();
        refresh ();

        if (getch () != KEY_RESIZE)
            running = FALSE;
    }

    endwin ();
    return 0;
}