]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/dots_termcap.c
c3eef5cf43087ac1c28a5b6cb1eef6ec98cbfb4a
[ncurses.git] / test / dots_termcap.c
1 /****************************************************************************
2  * Copyright (c) 2013-2014,2017 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /*
30  * Author: Thomas E. Dickey
31  *
32  * $Id: dots_termcap.c,v 1.12 2017/10/11 08:15:07 tom Exp $
33  *
34  * A simple demo of the termcap interface.
35  */
36 #define USE_TINFO
37 #include <test.priv.h>
38
39 #if !defined(__MINGW32__)
40 #include <sys/time.h>
41 #endif
42
43 #if HAVE_TGETENT
44
45 #include <time.h>
46
47 static bool interrupted = FALSE;
48 static long total_chars = 0;
49 static time_t started;
50
51 static char *t_AB;
52 static char *t_AF;
53 static char *t_cl;
54 static char *t_cm;
55 static char *t_me;
56 static char *t_mr;
57 static char *t_oc;
58 static char *t_op;
59 static char *t_ve;
60 static char *t_vi;
61
62 static struct {
63     const char *name;
64     char **value;
65 } my_caps[] = {
66
67     {
68         "AB", &t_AB
69     },
70     {
71         "AF", &t_AF
72     },
73     {
74         "cl", &t_cl
75     },
76     {
77         "cm", &t_cm
78     },
79     {
80         "me", &t_me
81     },
82     {
83         "mr", &t_mr
84     },
85     {
86         "oc", &t_oc
87     },
88     {
89         "op", &t_op
90     },
91     {
92         "ve", &t_ve
93     },
94     {
95         "vi", &t_vi
96     },
97 };
98
99 static
100 TPUTS_PROTO(outc, c)
101 {
102     int rc = c;
103
104     if (interrupted) {
105         char tmp = (char) c;
106         if (write(STDOUT_FILENO, &tmp, (size_t) 1) == -1)
107             rc = EOF;
108     } else {
109         rc = putc(c, stdout);
110     }
111     TPUTS_RETURN(rc);
112 }
113
114 static bool
115 outs(char *s)
116 {
117     if (VALID_STRING(s)) {
118         tputs(s, 1, outc);
119         return TRUE;
120     }
121     return FALSE;
122 }
123
124 static void
125 cleanup(void)
126 {
127     outs(t_me);
128     if (!outs(t_oc))
129         outs(t_op);
130     outs(t_cl);
131     outs(t_ve);
132
133     printf("\n\n%ld total cells, rate %.2f/sec\n",
134            total_chars,
135            ((double) (total_chars) / (double) (time((time_t *) 0) - started)));
136 }
137
138 static void
139 onsig(int n GCC_UNUSED)
140 {
141     interrupted = TRUE;
142 }
143
144 static double
145 ranf(void)
146 {
147     long r = (rand() & 077777);
148     return ((double) r / 32768.);
149 }
150
151 static void
152 my_napms(int ms)
153 {
154 #if defined(__MINGW32__) || !HAVE_GETTIMEOFDAY
155     Sleep((DWORD) ms);
156 #else
157     struct timeval data;
158     data.tv_sec = 0;
159     data.tv_usec = ms * 1000;
160     select(0, NULL, NULL, NULL, &data);
161 #endif
162 }
163
164 int
165 main(int argc GCC_UNUSED,
166      char *argv[]GCC_UNUSED)
167 {
168     int x, y, z, p;
169     int num_colors;
170     int num_lines;
171     int num_columns;
172     double r;
173     double c;
174     char buffer[1024];
175     char area[1024];
176     char *name;
177
178     srand((unsigned) time(0));
179
180     if ((name = getenv("TERM")) == 0) {
181         fprintf(stderr, "TERM is not set\n");
182         ExitProgram(EXIT_FAILURE);
183     }
184     InitAndCatch(z = tgetent(buffer, name), onsig);
185     if (z < 0) {
186         fprintf(stderr, "terminal description not found\n");
187         ExitProgram(EXIT_FAILURE);
188     } else {
189         size_t t;
190         char *ap = area;
191         for (t = 0; t < SIZEOF(my_caps); ++t) {
192             *(my_caps[t].value) = tgetstr((NCURSES_CONST char *)
193                                           my_caps[t].name, &ap);
194         }
195     }
196
197     num_colors = tgetnum("Co");
198     num_lines = tgetnum("li");
199     num_columns = tgetnum("co");
200
201     outs(t_cl);
202     outs(t_vi);
203     if (num_colors > 1) {
204         if (!VALID_STRING(t_AF)
205             || !VALID_STRING(t_AB)
206             || (!VALID_STRING(t_oc) && !VALID_STRING(t_op)))
207             num_colors = -1;
208     }
209
210     r = (double) (num_lines - 4);
211     c = (double) (num_columns - 4);
212     started = time((time_t *) 0);
213
214     while (!interrupted) {
215         x = (int) (c * ranf()) + 2;
216         y = (int) (r * ranf()) + 2;
217         p = (ranf() > 0.9) ? '*' : ' ';
218
219         tputs(tgoto(t_cm, x, y), 1, outc);
220         if (num_colors > 0) {
221             z = (int) (ranf() * num_colors);
222             if (ranf() > 0.01) {
223                 tputs(tgoto(t_AF, 0, z), 1, outc);
224             } else {
225                 tputs(tgoto(t_AB, 0, z), 1, outc);
226                 my_napms(1);
227             }
228         } else if (VALID_STRING(t_me)
229                    && VALID_STRING(t_mr)) {
230             if (ranf() <= 0.01) {
231                 outs((ranf() > 0.6)
232                      ? t_mr
233                      : t_me);
234                 my_napms(1);
235             }
236         }
237         outc(p);
238         fflush(stdout);
239         ++total_chars;
240     }
241     cleanup();
242     ExitProgram(EXIT_SUCCESS);
243 }
244 #else
245 int
246 main(int argc GCC_UNUSED,
247      char *argv[]GCC_UNUSED)
248 {
249     fprintf(stderr, "This program requires termcap\n");
250     exit(EXIT_FAILURE);
251 }
252 #endif