make the demo a bit less stupid.
[apps/madtty.git] / demo / boxshell.c
1 /* Just a simple example program that creates a terminal in a frame
2  * and lets the user interact with it.
3  *
4  * To compile:
5  *    gcc -o boxshell boxshell.c $(pkg-config madtty --cflags --libs)
6  */
7
8 #include <ncurses.h>
9 #include <stdio.h>
10 #include <signal.h>
11 #include <string.h>
12
13 #include <madtty/madtty.h>
14
15 static unsigned char getout = 0;
16 static int screen_w, screen_h;
17 static WINDOW *term_win;
18
19 void sigchld(int signo __attribute__((unused)))
20 {
21     getout = 1;
22 }
23
24 int my_custom_handler(RoteTerm *rt __attribute__((unused)), const char *es)
25 {
26     int color;
27     int i, j;
28
29     /* if the escape sequence does not begin with '{', we give up */
30     if (*es != '{') return ROTE_HANDLERESULT_NOWAY;
31
32     /* ok, now we know it begins with '{'. Now, if it does not end with '}',
33      * it is not yet complete */
34     if (es[strlen(es)-1] != '}') return ROTE_HANDLERESULT_NOTYET;
35
36     /* ok, the sequence is complete */
37     color = atoi(es + 1);
38     if (color < 0 || color > 7) return false; /* don't recognize it */
39
40     /* paint the background with that color */
41     attrset(COLOR_PAIR(color * 8));
42     move(0, 0);
43     for (i = 0; i < screen_h; i++) for (j = 0; j < screen_w; j++) addch(' ');
44     touchwin(stdscr);
45     refresh();
46
47     /* touch term_win to force it to do a full redraw next time */
48     touchwin(term_win);
49
50     /* and redraw the terminal window */
51     wrefresh(term_win);
52
53     /* escape sequence was handled ok */
54     return ROTE_HANDLERESULT_OK;
55 }
56
57 int main()
58 {
59     RoteTerm *rt;
60     int i, j, ch;
61
62     signal(SIGCHLD, sigchld);
63
64     initscr();
65     noecho();
66     start_color();
67     raw();
68     nodelay(stdscr, TRUE);       /* prevents getch() from blocking; rather
69                                   * it will return ERR when there is no
70                                   * keypress available */
71
72     keypad(stdscr, TRUE);        /* necessary to use rote_vt_keypress */
73     getmaxyx(stdscr, screen_h, screen_w);
74
75     /* initialize the color pairs the way rote_vt_draw expects it. You might
76      * initialize them differently, but in that case you would need
77      * to supply a custom conversion function for rote_vt_draw to
78      * call when setting attributes. The idea of this "default" mapping
79      * is to map (fg, bg) to the color pair bg * 8 + 7 - fg. This way,
80      * the pair (white, black) ends up mapped to 0, which means that
81      * it does not need a color pair (since it is the default). Since
82      * there are only 63 available color pairs (and 64 possible fg/bg
83      * combinations), we really have to save 1 pair by assigning no pair
84      * to the combination white/black. */
85     for (i = 0; i < 8; i++) for (j = 0; j < 8; j++)
86         if (i != 7 || j != 0)
87             init_pair(j*8+7-i, i, j);
88
89     /* paint the screen blue */
90     attrset(COLOR_PAIR(32));
91     for (i = 0; i < screen_h; i++) for (j = 0; j < screen_w; j++) addch(' ');
92     refresh();
93
94     /* create a window with a frame */
95     term_win = newwin(50, 82, 2, 4);
96     wattrset(term_win, COLOR_PAIR(7*8+7-0)); /* black over white */
97     wborder(term_win, 0, 0, 0, 0, 0, 0, 0, 0);
98     mvwprintw(term_win, 0, 27, " Term In a Box ");
99     wrefresh(term_win);
100
101     /* create the terminal and have it run bash */
102     rt = rote_vt_create(48, 80);
103     rote_vt_forkpty(rt, "/bin/bash --login");
104
105     /* add a sample custom escape sequence handler... say we want to handle
106      * the sequence, say, \e{N}, which will change the application's background
107      * color to N (where N is a number between 0 and 7). */
108     rote_vt_install_handler(rt, my_custom_handler);
109
110     /* keep reading keypresses from the user and passing them to the terminal;
111      * also, redraw the terminal to the window at each iteration */
112     ch = '\0';
113     while (!getout) {
114         usleep(10000);
115         rote_vt_draw(rt, term_win, 1, 1, NULL);
116         wrefresh(term_win);
117
118         ch = getch();
119         if (ch != ERR) 
120             rote_vt_keypress(rt, ch); /* pass the keypress for handling */
121     }
122
123     endwin();
124     return 0;
125 }