2 * Functions necessary to display a deck of slides in different color modes
3 * using ncurses. Only white, red, and blue are supported, as they can be
4 * faded in 256 color mode.
5 * Copyright (C) 2015 Michael Goehler
7 * This file is part of mdp.
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include <ctype.h> // isalnum
25 #include <wchar.h> // wcschr
26 #include <wctype.h> // iswalnum
27 #include <string.h> // strcpy
28 #include <unistd.h> // usleep
31 // color ramp for fading from black to color
32 static short white_ramp[24] = { 16, 232, 233, 234, 235, 236,
33 237, 238, 239, 240, 241, 242,
34 244, 245, 246, 247, 248, 249,
35 250, 251, 252, 253, 254, 255 };
37 static short blue_ramp[24] = { 16, 17, 17, 18, 18, 19,
38 19, 20, 20, 21, 27, 33,
39 32, 39, 38, 45, 44, 44,
40 81, 81, 51, 51, 123, 123 };
42 static short red_ramp[24] = { 16, 52, 52, 53, 53, 89,
43 89, 90, 90, 126, 127, 127,
44 163, 163, 164, 164, 200, 200,
45 201, 201, 207, 207, 213, 213 };
47 // color ramp for fading from white to color
48 static short white_ramp_invert[24] = { 15, 255, 254, 254, 252, 251,
49 250, 249, 248, 247, 246, 245,
50 243, 242, 241, 240, 239, 238,
51 237, 236, 235, 234, 233, 232};
53 static short blue_ramp_invert[24] = { 15, 231, 231, 195, 195, 159,
54 159, 123, 123, 87, 51, 44,
55 45, 38, 39, 32, 33, 33,
56 26, 26, 27, 27, 21, 21};
58 static short red_ramp_invert[24] = { 15, 231, 231, 224, 224, 225,
59 225, 218, 218, 219, 212, 213,
60 206, 207, 201, 200, 199, 199,
61 198, 198, 197, 197, 196, 196};
63 int ncurses_display(deck_t *deck, int notrans, int nofade, int invert, int reload, int noreload, int slidenum) {
67 int l = 0; // line number
68 int lc = 0; // line count
69 int sc = 1; // slide count
70 int colors = 0; // amount of colors supported
71 int fade = 0; // disable color fading by default
72 int trans = -1; // enable transparency if term supports it
73 int max_lines = 0; // max lines per slide
74 int max_cols = 0; // max columns per line
75 int offset; // text offset
76 int stop = 0; // passed stop bits per slide
78 // header line 1 is displayed at the top
79 int bar_top = (deck->headers > 0) ? 1 : 0;
80 // header line 2 is displayed at the bottom
81 // anyway we display the slide number at the bottom
82 int bar_bottom = (slidenum || deck->headers > 1)? 1 : 0;
84 slide_t *slide = deck->slide;
94 while(line && line->text) {
96 if (line->text->value)
97 lc += url_count_inline(line->text->value);
99 if (line->text->value)
100 line->length -= url_len_inline(line->text->value);
102 if(line->length > COLS) {
107 i = prev_blank(line->text, offset + COLS) - offset;
109 // single word is > COLS
111 // calculate min_width
112 i = next_blank(line->text, offset + COLS) - offset;
118 fwprintf(stderr, L"Error: Terminal width (%i columns) too small. Need at least %i columns.\n", COLS, i);
119 fwprintf(stderr, L"You may need to shorten some lines by inserting line breaks.\n");
126 max_cols = MAX(i, max_cols);
128 // iterate to next line
129 offset = prev_blank(line->text, offset + COLS);
130 i = line->length - offset;
133 // set max_cols one last time
134 max_cols = MAX(i, max_cols);
137 max_cols = MAX(line->length, max_cols);
143 max_lines = MAX(lc, max_lines);
149 if(max_lines + bar_top + bar_bottom > LINES) {
155 fwprintf(stderr, L"Error: Terminal height (%i lines) too small. Need at least %i lines.\n", LINES, max_lines + bar_top + bar_bottom);
156 fwprintf(stderr, L"You may need to add additional horizontal rules (---) to split your file in shorter slides.\n");
165 // disable output of keyboard typing
168 // make getch() process one char at a time
175 if(has_colors() == TRUE) {
177 use_default_colors();
184 trans = 15; // white in 256 color mode
186 trans = 16; // black in 256 color mode
191 init_pair(CP_WHITE, 232, trans);
192 init_pair(CP_BLUE, 21, trans);
193 init_pair(CP_RED, 196, trans);
194 init_pair(CP_BLACK, 15, 232);
196 init_pair(CP_WHITE, 255, trans);
197 init_pair(CP_BLUE, 123, trans);
198 init_pair(CP_RED, 213, trans);
199 init_pair(CP_BLACK, 16, 255);
201 init_pair(CP_YELLOW, 208, trans);
203 // enable color fading
212 trans = 7; // white in 8 color mode
214 trans = 0; // black in 8 color mode
219 init_pair(CP_WHITE, 0, trans);
220 init_pair(CP_BLACK, 7, 0);
222 init_pair(CP_WHITE, 7, trans);
223 init_pair(CP_BLACK, 0, 7);
225 init_pair(CP_BLUE, 4, trans);
226 init_pair(CP_RED, 1, trans);
227 init_pair(CP_YELLOW, 3, trans);
233 // set background color of main window
235 wbkgd(stdscr, COLOR_PAIR(CP_YELLOW));
238 WINDOW *content = newwin(LINES - bar_top - bar_bottom, COLS, 0 + bar_top, 0);
240 wbkgd(content, COLOR_PAIR(CP_WHITE));
244 // find slide to reload
245 while(reload > 1 && reload <= deck->slides) {
251 // reset reload indicator
262 // always resize window in case terminal geometry has changed
263 wresize(content, LINES - bar_top - bar_bottom, COLS);
268 offset = next_blank(line->text, 0) + 1;
269 // add text to header
271 0, (COLS - line->length + offset) / 2,
272 &line->text->value[offset]);
276 if(deck->headers > 1) {
277 line = deck->header->next;
278 offset = next_blank(line->text, 0) + 1;
280 case 0: // add text to center footer
282 LINES - 1, (COLS - line->length + offset) / 2,
283 &line->text->value[offset]);
286 case 2: // add text to left footer
289 &line->text->value[offset]);
294 // add slide number to right footer
296 case 1: // show slide number only
298 LINES - 1, COLS - int_length(sc) - 3,
301 case 2: // show current slide & number of slides
303 LINES - 1, COLS - int_length(deck->slides) - int_length(sc) - 6,
304 "%d / %d", sc, deck->slides);
308 // make header + fooder visible
317 add_line(content, l, (COLS - max_cols) / 2, line, max_cols, colors);
319 // raise stop counter if we pass a line having a stop bit
320 if(CHECK_BIT(line->bits, IS_STOP))
323 l += (line->length / COLS) + 1;
326 // only stop here if we didn't stop here recently
327 if(stop > slide->stop)
331 // print pandoc URL references
332 // only if we already printed all lines of the current slide
335 getmaxyx( content, ymax, i );
336 for (i = 0; i < url_get_amount(); i++) {
337 mvwprintw(content, ymax - url_get_amount() - 1 + i, 3,
339 waddwstr(content, url_get_target(i));
343 // make content visible
348 fade_in(content, trans, colors, invert);
350 // re-enable fading after any undefined key press
351 if(COLORS == 256 && !nofade)
354 // wait for user input
357 // evaluate user input
361 // show previous slide or stop bit
365 case 8: // BACKSPACE (ascii)
366 case 127: // BACKSPACE (xterm)
367 case 263: // BACKSPACE (getty)
370 if(stop > 1 || (stop == 1 && !line)) {
371 // show current slide again
372 // but stop one stop bit earlier
377 // show previous slide
380 //stop on first bullet point always
390 // show next slide or stop bit
399 // show current slide again
400 // but stop one stop bit later (or at end of slide)
425 i = get_slide_number(c);
426 if(i > 0 && i <= deck->slides) {
443 // disable fading if slide n doesn't exist
458 for(i = sc; i <= deck->slides; i++) {
473 // disable fading if reload is not possible
480 // do not fade out on exit
488 // disable fading on undefined key press
495 fade_out(content, trans, colors, invert);
503 // free ncurses memory
508 // return reload indicator (0 means no reload)
512 void add_line(WINDOW *window, int y, int x, line_t *line, int max_cols, int colors) {
514 if(!line->text->value) {
519 int offset = 0; // text offset
521 // move the cursor in position
524 // IS_UNORDERED_LIST_3
525 if(CHECK_BIT(line->bits, IS_UNORDERED_LIST_3)) {
526 offset = next_nonblank(line->text, 0);
528 strcpy(&prompt[0], CHECK_BIT(line->bits, IS_UNORDERED_LIST_1)? " | " : " ");
529 strcpy(&prompt[4], CHECK_BIT(line->bits, IS_UNORDERED_LIST_2)? " | " : " ");
531 if(CHECK_BIT(line->bits, IS_UNORDERED_LIST_EXT)) {
532 strcpy(&prompt[8], line->next && CHECK_BIT(line->next->bits, IS_UNORDERED_LIST_3)? " | " : " ");
534 strcpy(&prompt[8], " +- ");
541 if(!CHECK_BIT(line->bits, IS_CODE))
542 inline_display(window, &line->text->value[offset], colors);
544 // IS_UNORDERED_LIST_2
545 } else if(CHECK_BIT(line->bits, IS_UNORDERED_LIST_2)) {
546 offset = next_nonblank(line->text, 0);
548 strcpy(&prompt[0], CHECK_BIT(line->bits, IS_UNORDERED_LIST_1)? " | " : " ");
550 if(CHECK_BIT(line->bits, IS_UNORDERED_LIST_EXT)) {
551 strcpy(&prompt[4], line->next && CHECK_BIT(line->next->bits, IS_UNORDERED_LIST_2)? " | " : " ");
553 strcpy(&prompt[4], " +- ");
560 if(!CHECK_BIT(line->bits, IS_CODE))
561 inline_display(window, &line->text->value[offset], colors);
563 // IS_UNORDERED_LIST_1
564 } else if(CHECK_BIT(line->bits, IS_UNORDERED_LIST_1)) {
565 offset = next_nonblank(line->text, 0);
568 if(CHECK_BIT(line->bits, IS_UNORDERED_LIST_EXT)) {
569 strcpy(&prompt[0], line->next && CHECK_BIT(line->next->bits, IS_UNORDERED_LIST_1)? " | " : " ");
571 strcpy(&prompt[0], " +- ");
578 if(!CHECK_BIT(line->bits, IS_CODE))
579 inline_display(window, &line->text->value[offset], colors);
583 if(CHECK_BIT(line->bits, IS_CODE)) {
585 if (!CHECK_BIT(line->bits, IS_TILDE_CODE)) {
586 // set static offset for code
587 offset = CODE_INDENT;
590 // reverse color for code blocks
592 wattron(window, COLOR_PAIR(CP_BLACK));
595 waddwstr(window, &line->text->value[offset]);
598 if(!CHECK_BIT(line->bits, IS_UNORDERED_LIST_1) &&
599 !CHECK_BIT(line->bits, IS_UNORDERED_LIST_2) &&
600 !CHECK_BIT(line->bits, IS_UNORDERED_LIST_3) &&
601 !CHECK_BIT(line->bits, IS_CODE)) {
604 if(CHECK_BIT(line->bits, IS_QUOTE)) {
605 while(line->text->value[offset] == '>') {
606 // print a reverse color block
608 wattron(window, COLOR_PAIR(CP_BLACK));
609 wprintw(window, "%s", " ");
610 wattron(window, COLOR_PAIR(CP_WHITE));
611 wprintw(window, "%s", " ");
613 wprintw(window, "%s", ">");
616 // find next quote or break
618 if(line->text->value[offset] == ' ')
619 offset = next_word(line->text, offset);
622 inline_display(window, &line->text->value[offset], colors);
626 if(CHECK_BIT(line->bits, IS_CENTER)) {
627 if(line->length < max_cols) {
628 wmove(window, y, x + ((max_cols - line->length) / 2));
633 if(CHECK_BIT(line->bits, IS_H1) || CHECK_BIT(line->bits, IS_H2)) {
635 // set headline color
637 wattron(window, COLOR_PAIR(CP_BLUE));
639 // enable underline for H1
640 if(CHECK_BIT(line->bits, IS_H1))
641 wattron(window, A_UNDERLINE);
644 while(line->text->value[offset] == '#')
645 offset = next_word(line->text, offset);
648 waddwstr(window, &line->text->value[offset]);
650 wattroff(window, A_UNDERLINE);
652 // no line-wide markdown
655 inline_display(window, &line->text->value[offset], colors);
660 // fill rest off line with spaces
661 // we only need this if the color is inverted (e.g. code-blocks),
662 // to ensure the background fades too
663 if(CHECK_BIT(line->bits, IS_CODE))
664 for(i = getcurx(window) - x; i < max_cols; i++)
665 wprintw(window, "%s", " ");
667 // reset to default color
669 wattron(window, COLOR_PAIR(CP_WHITE));
670 wattroff(window, A_UNDERLINE);
673 void inline_display(WINDOW *window, const wchar_t *c, const int colors) {
674 const static wchar_t *special = L"\\*_`!["; // list of interpreted chars
675 const wchar_t *i = c; // iterator
676 const wchar_t *start_link_name, *start_url;
677 int length_link_name, url_num;
678 cstack_t *stack = cstack_init();
681 // for each char in line
684 // if char is in special char list
685 if(wcschr(special, *i)) {
687 // closing special char (or second backslash)
688 // only if not followed by :alnum:
689 if((stack->top)(stack, *i) &&
690 (!iswalnum(i[1]) || *(i + 1) == L'\0' || *i == L'\\')) {
693 // print escaped backslash
695 waddnwstr(window, i, 1);
700 wattron(window, COLOR_PAIR(CP_WHITE));
704 wattroff(window, A_UNDERLINE);
706 // disable inline code
709 wattron(window, COLOR_PAIR(CP_WHITE));
713 // remove top special char from stack
716 // treat special as regular char
717 } else if((stack->top)(stack, L'\\')) {
718 waddnwstr(window, i, 1);
720 // remove backslash from stack
723 // opening special char
726 // emphasis or code span can start after new-line or space only
727 // and of cause after another emphasis markup
728 //TODO this condition looks ugly
730 iswspace(*(i - 1)) ||
731 ((iswspace(*(i - 1)) || *(i - 1) == L'*' || *(i - 1) == L'_') &&
732 ((i - 1) == c || iswspace(*(i - 2)))) ||
735 // url in pandoc style
736 if ((*i == L'[' && wcschr(i, L']')) ||
737 (*i == L'!' && *(i + 1) == L'[' && wcschr(i, L']'))) {
741 if (wcschr(i, L']')[1] == L'(' && wcschr(i, L')')) {
744 // turn higlighting and underlining on
746 wattron(window, COLOR_PAIR(CP_BLUE));
747 wattron(window, A_UNDERLINE);
751 // print the content of the label
752 // the label is printed as is
754 waddnwstr(window, i, 1);
756 } while (*i != L']');
758 length_link_name = i - 1 - start_link_name;
765 while (*i != L')') i++;
767 url_num = url_add(start_link_name, length_link_name, start_url, i - start_url, 0, 0);
769 wprintw(window, " [%d]", url_num);
771 // turn highlighting and underlining off
772 wattroff(window, A_UNDERLINE);
773 wattron(window, COLOR_PAIR(CP_WHITE));
776 wprintw(window, "[");
783 wattron(window, COLOR_PAIR(CP_RED));
787 wattron(window, A_UNDERLINE);
789 // enable inline code
792 wattron(window, COLOR_PAIR(CP_BLACK));
794 // do nothing for backslashes
797 // push special char to stack
798 (stack->push)(stack, *i);
801 waddnwstr(window, i, 1);
806 // remove backslash from stack
807 if((stack->top)(stack, L'\\'))
810 // print regular char
811 waddnwstr(window, i, 1);
815 // pop stack until empty to prevent formated trailing spaces
816 while(!(stack->empty)(stack)) {
817 switch((stack->pop)(stack)) {
821 wattron(window, COLOR_PAIR(CP_WHITE));
825 wattroff(window, A_UNDERLINE);
827 // disable inline code
830 wattron(window, COLOR_PAIR(CP_WHITE));
832 // do nothing for backslashes
836 (stack->delete)(stack);
839 void fade_out(WINDOW *window, int trans, int colors, int invert) {
841 if(colors && COLORS == 256) {
842 for(i = 22; i >= 0; i--) {
846 init_pair(CP_WHITE, white_ramp_invert[i], trans);
847 init_pair(CP_BLUE, blue_ramp_invert[i], trans);
848 init_pair(CP_RED, red_ramp_invert[i], trans);
849 init_pair(CP_BLACK, 15, white_ramp_invert[i]);
851 init_pair(CP_WHITE, white_ramp[i], trans);
852 init_pair(CP_BLUE, blue_ramp[i], trans);
853 init_pair(CP_RED, red_ramp[i], trans);
854 init_pair(CP_BLACK, 16, white_ramp[i]);
857 // refresh window with new color
860 // delay for our eyes to recognize the change
866 void fade_in(WINDOW *window, int trans, int colors, int invert) {
868 if(colors && COLORS == 256) {
869 for(i = 0; i <= 23; i++) {
871 // brighten color pairs
873 init_pair(CP_WHITE, white_ramp_invert[i], trans);
874 init_pair(CP_BLUE, blue_ramp_invert[i], trans);
875 init_pair(CP_RED, red_ramp_invert[i], trans);
876 init_pair(CP_BLACK, 15, white_ramp_invert[i]);
878 init_pair(CP_WHITE, white_ramp[i], trans);
879 init_pair(CP_BLUE, blue_ramp[i], trans);
880 init_pair(CP_RED, red_ramp[i], trans);
881 init_pair(CP_BLACK, 16, white_ramp[i]);
884 // refresh window with new color
887 // delay for our eyes to recognize the change
893 int int_length (int val) {
902 int get_slide_number(char init) {
903 int retval = init - '0';
905 // block for tenths of a second when using getch, ERR if no input
906 halfdelay(GOTO_SLIDE_DELAY);
907 while((c = getch()) != ERR) {
908 if (c < '0' || c > '9') {
912 retval = (retval * 10) + (c - '0');
914 nocbreak(); // cancel half delay mode
915 cbreak(); // go back to cbreak