]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/dots_xcurses.c
ncurses 6.1 - patch 20191123
[ncurses.git] / test / dots_xcurses.c
1 /****************************************************************************
2  * Copyright (c) 2017-2018,2019 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_xcurses.c,v 1.18 2019/08/24 22:31:43 tom Exp $
33  *
34  * A simple demo of the wide-curses interface used for comparison with termcap.
35  */
36 #include <test.priv.h>
37
38 #if !defined(_WIN32)
39 #include <sys/time.h>
40 #endif
41
42 #include <time.h>
43
44 #if USE_WIDEC_SUPPORT
45
46 #if HAVE_ALLOC_PAIR
47 #define NewPair(n) x_option ? ((void *)&(n)) : NULL
48 #else
49 #define NewPair(n) NULL
50 #endif
51
52 #define InitPair(p,fg,bg) init_pair((short) (p), (short) (fg), (short) (bg))
53
54 static bool interrupted = FALSE;
55 static long total_chars = 0;
56 static time_t started;
57
58 #if HAVE_ALLOC_PAIR
59 static bool x_option = FALSE;
60 #endif
61
62 static void
63 cleanup(void)
64 {
65     endwin();
66
67     printf("\n\n%ld total cells, rate %.2f/sec\n",
68            total_chars,
69            ((double) (total_chars) / (double) (time((time_t *) 0) - started)));
70 }
71
72 static void
73 onsig(int n GCC_UNUSED)
74 {
75     interrupted = TRUE;
76 }
77
78 static double
79 ranf(void)
80 {
81     long r = (rand() & 077777);
82     return ((double) r / 32768.);
83 }
84
85 static int
86 mypair(int fg, int bg)
87 {
88     int result;
89 #if HAVE_ALLOC_PAIR
90     if (x_option) {
91         result = alloc_pair(fg, bg);
92     } else
93 #endif
94     {
95         int pair = (fg * COLORS) + bg;
96         result = (pair >= COLOR_PAIRS) ? -1 : pair;
97     }
98     return result;
99 }
100
101 static void
102 set_colors(int fg, int bg)
103 {
104     int pair = mypair(fg, bg);
105     if (pair > 0) {
106         (void) color_set((short) pair, NewPair(pair));
107     }
108 }
109
110 static void
111 usage(void)
112 {
113     static const char *msg[] =
114     {
115         "Usage: dots_xcurses [options]"
116         ,""
117         ,"Options:"
118         ," -T TERM  override $TERM"
119 #if HAVE_USE_DEFAULT_COLORS
120         ," -d       invoke use_default_colors()"
121 #endif
122 #if HAVE_USE_ENV
123         ," -e       allow environment $LINES / $COLUMNS"
124 #endif
125         ," -m SIZE  set margin (default: 2)"
126         ," -s MSECS delay 1% of the time (default: 1 msecs)"
127 #if HAVE_ALLOC_PAIR
128         ," -x       use alloc_pair() rather than init_pair()"
129 #endif
130     };
131     size_t n;
132
133     for (n = 0; n < SIZEOF(msg); n++)
134         fprintf(stderr, "%s\n", msg[n]);
135
136     ExitProgram(EXIT_FAILURE);
137 }
138
139 int
140 main(int argc, char *argv[])
141 {
142     int fg, bg, ch;
143     wchar_t wch[2];
144     double r;
145     double c;
146 #if HAVE_USE_DEFAULT_COLORS
147     bool d_option = FALSE;
148 #endif
149     int m_option = 2;
150     int s_option = 1;
151     size_t need;
152     char *my_env;
153
154     while ((ch = getopt(argc, argv, "T:dem:s:x")) != -1) {
155         switch (ch) {
156         case 'T':
157             need = 6 + strlen(optarg);
158             my_env = malloc(need);
159             _nc_SPRINTF(my_env, _nc_SLIMIT(need) "TERM=%s", optarg);
160             putenv(my_env);
161             break;
162 #if HAVE_USE_DEFAULT_COLORS
163         case 'd':
164             d_option = TRUE;
165             break;
166 #endif
167 #if HAVE_USE_ENV
168         case 'e':
169             use_env(TRUE);
170             break;
171 #endif
172         case 'm':
173             m_option = atoi(optarg);
174             break;
175         case 's':
176             s_option = atoi(optarg);
177             break;
178 #if HAVE_ALLOC_PAIR
179         case 'x':
180             x_option = TRUE;
181             break;
182 #endif
183         default:
184             usage();
185             break;
186         }
187     }
188
189     srand((unsigned) time(0));
190
191     InitAndCatch(initscr(), onsig);
192     if (has_colors()) {
193         start_color();
194 #if HAVE_USE_DEFAULT_COLORS
195         if (d_option)
196             use_default_colors();
197 #endif
198 #if HAVE_ALLOC_PAIR
199         if (x_option) {
200             ;                   /* nothing */
201         } else
202 #endif
203         {
204             for (fg = 0; fg < COLORS; fg++) {
205                 for (bg = 0; bg < COLORS; bg++) {
206                     int pair;
207                     if (interrupted) {
208                         cleanup();
209                         ExitProgram(EXIT_FAILURE);
210                     }
211                     pair = mypair(fg, bg);
212                     if (pair > 0) {
213                         InitPair(pair, fg, bg);
214                     }
215                 }
216             }
217         }
218     }
219
220     r = (double) (LINES - (2 * m_option));
221     c = (double) (COLS - (2 * m_option));
222     started = time((time_t *) 0);
223
224     fg = COLOR_WHITE;
225     bg = COLOR_BLACK;
226     wch[1] = 0;
227     while (!interrupted) {
228         int x = (int) (c * ranf()) + m_option;
229         int y = (int) (r * ranf()) + m_option;
230         int p = (ranf() > 0.9) ? '*' : ' ';
231
232         move(y, x);
233         if (has_colors()) {
234             int z = (int) (ranf() * COLORS);
235             if (ranf() > 0.01) {
236                 set_colors(fg = z, bg);
237             } else {
238                 set_colors(fg, bg = z);
239                 napms(s_option);
240             }
241         } else {
242             if (ranf() <= 0.01) {
243                 if (ranf() > 0.6) {
244                     attr_on(WA_REVERSE, NULL);
245                 } else {
246                     attr_off(WA_REVERSE, NULL);
247                 }
248                 napms(s_option);
249             }
250         }
251         wch[0] = (wchar_t) p;
252         addnwstr(wch, 1);
253         refresh();
254         ++total_chars;
255     }
256     cleanup();
257     ExitProgram(EXIT_SUCCESS);
258 }
259
260 #else
261 int
262 main(void)
263 {
264     printf("This program requires the wide-ncurses library\n");
265     ExitProgram(EXIT_FAILURE);
266 }
267 #endif