]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/dots_mvcur.c
ncurses 6.1 - patch 20180707
[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.19 2017/11/24 19:26:31 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(NCURSES_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 #if HAVE_USE_ENV
122         ," -e       allow environment $LINES / $COLUMNS"
123 #endif
124         ," -f       use tigetnum rather than <term.h> mapping"
125         ," -m SIZE  set margin (default: 2)"
126         ," -s MSECS delay 1% of the time (default: 1 msecs)"
127     };
128     size_t n;
129
130     for (n = 0; n < SIZEOF(msg); n++)
131         fprintf(stderr, "%s\n", msg[n]);
132
133     ExitProgram(EXIT_FAILURE);
134 }
135
136 int
137 main(int argc GCC_UNUSED,
138      char *argv[]GCC_UNUSED)
139 {
140     int x0 = 1, y0 = 1;
141     int x, y, z, p;
142     double r;
143     double c;
144     SCREEN *sp;
145     int my_colors;
146     int f_option = 0;
147     int m_option = 2;
148     int s_option = 1;
149
150     while ((x = getopt(argc, argv, "T:efm:s:")) != -1) {
151         switch (x) {
152         case 'T':
153             putenv(strcat(strcpy(malloc(6 + strlen(optarg)), "TERM="), optarg));
154             break;
155 #if HAVE_USE_ENV
156         case 'e':
157             use_env(TRUE);
158             break;
159 #endif
160         case 'f':
161             f_option = 1;
162             break;
163         case 'm':
164             m_option = atoi(optarg);
165             break;
166         case 's':
167             s_option = atoi(optarg);
168             break;
169         default:
170             usage();
171             break;
172         }
173     }
174
175     InitAndCatch((sp = newterm((char *) 0, stdout, stdin)), onsig);
176     refresh();                  /* needed with Solaris curses to cancel endwin */
177
178     if (sp == 0) {
179         fprintf(stderr, "Cannot initialize terminal\n");
180         ExitProgram(EXIT_FAILURE);
181     }
182
183     srand((unsigned) time(0));
184
185     outs(clear_screen);
186     outs(cursor_home);
187     outs(cursor_invisible);
188
189 #define GetNumber(ln,sn) get_number(f_option ? #sn : 0, ln)
190     my_colors = GetNumber(max_colors, colors);
191     if (my_colors > 1) {
192         if (!VALID_STRING(set_a_foreground)
193             || !VALID_STRING(set_a_background)
194             || (!VALID_STRING(orig_colors) && !VALID_STRING(orig_pair)))
195             my_colors = -1;
196     }
197
198     r = (double) (GetNumber(lines, lines) - (m_option * 2));
199     c = (double) (GetNumber(columns, cols) - (m_option * 2));
200     started = time((time_t *) 0);
201
202     while (!interrupted) {
203         x = (int) (c * ranf()) + m_option;
204         y = (int) (r * ranf()) + m_option;
205         p = (ranf() > 0.9) ? '*' : ' ';
206
207         if (mvcur(y0, x0, y, x) != ERR) {
208             x0 = x;
209             y0 = y;
210         }
211
212         if (my_colors > 0) {
213             z = (int) (ranf() * my_colors);
214             if (ranf() > 0.01) {
215                 tputs(tparm2(set_a_foreground, z), 1, outc);
216             } else {
217                 tputs(tparm2(set_a_background, z), 1, outc);
218                 napms(s_option);
219             }
220         } else if (VALID_STRING(exit_attribute_mode)
221                    && VALID_STRING(enter_reverse_mode)) {
222             if (ranf() <= 0.01) {
223                 outs((ranf() > 0.6)
224                      ? enter_reverse_mode
225                      : exit_attribute_mode);
226                 napms(s_option);
227             }
228         }
229         outc(p);
230         ++x0;
231         fflush(stdout);
232         ++total_chars;
233     }
234     cleanup();
235     endwin();
236     delscreen(sp);
237     ExitProgram(EXIT_SUCCESS);
238 }
239 #else
240 int
241 main(int argc GCC_UNUSED,
242      char *argv[]GCC_UNUSED)
243 {
244     fprintf(stderr, "This program requires terminfo\n");
245     exit(EXIT_FAILURE);
246 }
247 #endif