]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/dots_mvcur.c
2a2cdf5429be709d449ce9a621670c329c18f334
[ncurses.git] / test / dots_mvcur.c
1 /****************************************************************************
2  * Copyright (c) 2007-2013,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 - 2007
31  *
32  * $Id: dots_mvcur.c,v 1.17 2017/10/22 00:44:39 tom Exp $
33  *
34  * A simple demo of the terminfo interface, and mvcur.
35  */
36 #define USE_TINFO
37 #include <test.priv.h>
38
39 #if HAVE_SETUPTERM
40
41 #include <time.h>
42
43 static bool interrupted = FALSE;
44 static long total_chars = 0;
45 static time_t started;
46
47 static
48 TPUTS_PROTO(outc, c)
49 {
50     int rc = c;
51
52     if (interrupted) {
53         char tmp = (char) c;
54         if (write(STDOUT_FILENO, &tmp, (size_t) 1) == -1)
55             rc = EOF;
56     } else {
57         if (putc(c, stdout) == EOF)
58             rc = EOF;
59     }
60     TPUTS_RETURN(rc);
61 }
62
63 static bool
64 outs(const char *s)
65 {
66     if (VALID_STRING(s)) {
67         tputs(s, 1, outc);
68         return TRUE;
69     }
70     return FALSE;
71 }
72
73 static void
74 cleanup(void)
75 {
76     outs(exit_attribute_mode);
77     if (!outs(orig_colors))
78         outs(orig_pair);
79     outs(clear_screen);
80     outs(cursor_normal);
81
82     printf("\n\n%ld total cells, rate %.2f/sec\n",
83            total_chars,
84            ((double) (total_chars) / (double) (time((time_t *) 0) - started)));
85 }
86
87 static void
88 onsig(int n GCC_UNUSED)
89 {
90     interrupted = TRUE;
91 }
92
93 static double
94 ranf(void)
95 {
96     long r = (rand() & 077777);
97     return ((double) r / 32768.);
98 }
99
100 static int
101 get_number(const char *cap, int map)
102 {
103     int result = map;
104     if (cap != 0) {
105         int check = tigetnum(cap);
106         if (check > 0)
107             result = check;
108     }
109     return result;
110 }
111
112 static void
113 usage(void)
114 {
115     static const char *msg[] =
116     {
117         "Usage: dots_termcap [options]"
118         ,""
119         ,"Options:"
120         ," -T TERM  override $TERM"
121         ," -e       allow environment $LINES / $COLUMNS"
122         ," -f       use tigetnum rather than <term.h> mapping"
123         ," -m SIZE  set margin (default: 2)"
124         ," -s MSECS delay 1% of the time (default: 1 msecs)"
125     };
126     size_t n;
127
128     for (n = 0; n < SIZEOF(msg); n++)
129         fprintf(stderr, "%s\n", msg[n]);
130
131     ExitProgram(EXIT_FAILURE);
132 }
133
134 int
135 main(int argc GCC_UNUSED,
136      char *argv[]GCC_UNUSED)
137 {
138     int x0 = 1, y0 = 1;
139     int x, y, z, p;
140     double r;
141     double c;
142     SCREEN *sp;
143     int my_colors;
144     int f_option = 0;
145     int m_option = 2;
146     int s_option = 1;
147
148     while ((x = getopt(argc, argv, "T:efm:s:")) != -1) {
149         switch (x) {
150         case 'T':
151             putenv(strcat(strcpy(malloc(6 + strlen(optarg)), "TERM="), optarg));
152             break;
153         case 'e':
154             use_env(TRUE);
155             break;
156         case 'f':
157             f_option = 1;
158             break;
159         case 'm':
160             m_option = atoi(optarg);
161             break;
162         case 's':
163             s_option = atoi(optarg);
164             break;
165         default:
166             usage();
167             break;
168         }
169     }
170
171     InitAndCatch((sp = newterm((char *) 0, stdout, stdin)), onsig);
172     refresh();                  /* needed with Solaris curses to cancel endwin */
173
174     if (sp == 0) {
175         fprintf(stderr, "Cannot initialize terminal\n");
176         ExitProgram(EXIT_FAILURE);
177     }
178
179     srand((unsigned) time(0));
180
181     outs(clear_screen);
182     outs(cursor_home);
183     outs(cursor_invisible);
184
185 #define GetNumber(ln,sn) get_number(f_option ? #sn : 0, ln)
186     my_colors = GetNumber(max_colors, colors);
187     if (my_colors > 1) {
188         if (!VALID_STRING(set_a_foreground)
189             || !VALID_STRING(set_a_background)
190             || (!VALID_STRING(orig_colors) && !VALID_STRING(orig_pair)))
191             my_colors = -1;
192     }
193
194     r = (double) (GetNumber(lines, lines) - (m_option * 2));
195     c = (double) (GetNumber(columns, cols) - (m_option * 2));
196     started = time((time_t *) 0);
197
198     while (!interrupted) {
199         x = (int) (c * ranf()) + m_option;
200         y = (int) (r * ranf()) + m_option;
201         p = (ranf() > 0.9) ? '*' : ' ';
202
203         if (mvcur(y0, x0, y, x) != ERR) {
204             x0 = x;
205             y0 = y;
206         }
207
208         if (my_colors > 0) {
209             z = (int) (ranf() * my_colors);
210             if (ranf() > 0.01) {
211                 tputs(tparm2(set_a_foreground, z), 1, outc);
212             } else {
213                 tputs(tparm2(set_a_background, z), 1, outc);
214                 napms(s_option);
215             }
216         } else if (VALID_STRING(exit_attribute_mode)
217                    && VALID_STRING(enter_reverse_mode)) {
218             if (ranf() <= 0.01) {
219                 outs((ranf() > 0.6)
220                      ? enter_reverse_mode
221                      : exit_attribute_mode);
222                 napms(s_option);
223             }
224         }
225         outc(p);
226         ++x0;
227         fflush(stdout);
228         ++total_chars;
229     }
230     cleanup();
231     endwin();
232     delscreen(sp);
233     ExitProgram(EXIT_SUCCESS);
234 }
235 #else
236 int
237 main(int argc GCC_UNUSED,
238      char *argv[]GCC_UNUSED)
239 {
240     fprintf(stderr, "This program requires terminfo\n");
241     exit(EXIT_FAILURE);
242 }
243 #endif