]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/dots_xcurses.c
ncurses 6.1 - patch 20180714
[ncurses.git] / test / dots_xcurses.c
1 /****************************************************************************
2  * Copyright (c) 2017,2018 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.16 2018/06/23 21:35:06 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 x, y, z, p;
143     int fg, bg, ch;
144     wchar_t wch[2];
145     int pair;
146     double r;
147     double c;
148 #if HAVE_USE_DEFAULT_COLORS
149     bool d_option = FALSE;
150 #endif
151     int m_option = 2;
152     int s_option = 1;
153
154     while ((ch = getopt(argc, argv, "T:dem:s:x")) != -1) {
155         switch (ch) {
156         case 'T':
157             putenv(strcat(strcpy(malloc(6 + strlen(optarg)), "TERM="), optarg));
158             break;
159 #if HAVE_USE_DEFAULT_COLORS
160         case 'd':
161             d_option = TRUE;
162             break;
163 #endif
164 #if HAVE_USE_ENV
165         case 'e':
166             use_env(TRUE);
167             break;
168 #endif
169         case 'm':
170             m_option = atoi(optarg);
171             break;
172         case 's':
173             s_option = atoi(optarg);
174             break;
175 #if HAVE_ALLOC_PAIR
176         case 'x':
177             x_option = TRUE;
178             break;
179 #endif
180         default:
181             usage();
182             break;
183         }
184     }
185
186     srand((unsigned) time(0));
187
188     InitAndCatch(initscr(), onsig);
189     if (has_colors()) {
190         start_color();
191 #if HAVE_USE_DEFAULT_COLORS
192         if (d_option)
193             use_default_colors();
194 #endif
195 #if HAVE_ALLOC_PAIR
196         if (x_option) {
197             ;                   /* nothing */
198         } else
199 #endif
200         {
201             for (fg = 0; fg < COLORS; fg++) {
202                 for (bg = 0; bg < COLORS; bg++) {
203                     if (interrupted) {
204                         cleanup();
205                         ExitProgram(EXIT_FAILURE);
206                     }
207                     pair = mypair(fg, bg);
208                     if (pair > 0) {
209                         InitPair(pair, fg, bg);
210                     }
211                 }
212             }
213         }
214     }
215
216     r = (double) (LINES - (2 * m_option));
217     c = (double) (COLS - (2 * m_option));
218     started = time((time_t *) 0);
219
220     fg = COLOR_WHITE;
221     bg = COLOR_BLACK;
222     pair = 0;
223     wch[1] = 0;
224     while (!interrupted) {
225         x = (int) (c * ranf()) + m_option;
226         y = (int) (r * ranf()) + m_option;
227         p = (ranf() > 0.9) ? '*' : ' ';
228
229         move(y, x);
230         if (has_colors()) {
231             z = (int) (ranf() * COLORS);
232             if (ranf() > 0.01) {
233                 set_colors(fg = z, bg);
234             } else {
235                 set_colors(fg, bg = z);
236                 napms(s_option);
237             }
238         } else {
239             if (ranf() <= 0.01) {
240                 if (ranf() > 0.6) {
241                     attr_on(WA_REVERSE, NULL);
242                 } else {
243                     attr_off(WA_REVERSE, NULL);
244                 }
245                 napms(s_option);
246             }
247         }
248         wch[0] = (wchar_t) p;
249         addnwstr(wch, 1);
250         refresh();
251         ++total_chars;
252     }
253     cleanup();
254     ExitProgram(EXIT_SUCCESS);
255 }
256
257 #else
258 int
259 main(void)
260 {
261     printf("This program requires the wide-ncurses library\n");
262     ExitProgram(EXIT_FAILURE);
263 }
264 #endif