]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/dots_xcurses.c
6ccd265a839b197c85b43044fc44a30b12c5ddd7
[ncurses.git] / test / dots_xcurses.c
1 /****************************************************************************
2  * Copyright (c) 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_xcurses.c,v 1.12 2017/10/30 22:06:10 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(__MINGW32__)
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         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         ," -e       allow environment $LINES / $COLUMNS"
123         ," -m SIZE  set margin (default: 2)"
124         ," -s MSECS delay 1% of the time (default: 1 msecs)"
125 #if HAVE_ALLOC_PAIR
126         ," -x       use alloc_pair() rather than init_pair()"
127 #endif
128     };
129     size_t n;
130
131     for (n = 0; n < SIZEOF(msg); n++)
132         fprintf(stderr, "%s\n", msg[n]);
133
134     ExitProgram(EXIT_FAILURE);
135 }
136
137 int
138 main(int argc, char *argv[])
139 {
140     int x, y, z, p;
141     int fg, bg, ch;
142     wchar_t wch[2];
143     int pair;
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
152     while ((ch = getopt(argc, argv, "T:dem:s:x")) != -1) {
153         switch (ch) {
154         case 'T':
155             putenv(strcat(strcpy(malloc(6 + strlen(optarg)), "TERM="), optarg));
156             break;
157 #if HAVE_USE_DEFAULT_COLORS
158         case 'd':
159             d_option = TRUE;
160             break;
161 #endif
162         case 'e':
163             use_env(TRUE);
164             break;
165         case 'm':
166             m_option = atoi(optarg);
167             break;
168         case 's':
169             s_option = atoi(optarg);
170             break;
171 #if HAVE_ALLOC_PAIR
172         case 'x':
173             x_option = TRUE;
174             break;
175 #endif
176         default:
177             usage();
178             break;
179         }
180     }
181
182     srand((unsigned) time(0));
183
184     InitAndCatch(initscr(), onsig);
185     if (has_colors()) {
186         start_color();
187 #if HAVE_USE_DEFAULT_COLORS
188         if (d_option)
189             use_default_colors();
190 #endif
191 #if HAVE_ALLOC_PAIR
192         if (x_option) {
193             ;                   /* nothing */
194         } else
195 #endif
196         {
197             for (fg = 0; fg < COLORS; fg++) {
198                 for (bg = 0; bg < COLORS; bg++) {
199                     if (interrupted) {
200                         cleanup();
201                         ExitProgram(EXIT_FAILURE);
202                     }
203                     pair = mypair(fg, bg);
204                     if (pair > 0) {
205                         InitPair(pair, fg, bg);
206                     }
207                 }
208             }
209         }
210     }
211
212     r = (double) (LINES - (2 * m_option));
213     c = (double) (COLS - (2 * m_option));
214     started = time((time_t *) 0);
215
216     fg = COLOR_WHITE;
217     bg = COLOR_BLACK;
218     pair = 0;
219     wch[1] = 0;
220     while (!interrupted) {
221         x = (int) (c * ranf()) + m_option;
222         y = (int) (r * ranf()) + m_option;
223         p = (ranf() > 0.9) ? '*' : ' ';
224
225         move(y, x);
226         if (has_colors()) {
227             z = (int) (ranf() * COLORS);
228             if (ranf() > 0.01) {
229                 set_colors(fg = z, bg);
230             } else {
231                 set_colors(fg, bg = z);
232                 napms(s_option);
233             }
234         } else {
235             if (ranf() <= 0.01) {
236                 if (ranf() > 0.6) {
237                     attr_on(WA_REVERSE, NULL);
238                 } else {
239                     attr_off(WA_REVERSE, NULL);
240                 }
241                 napms(s_option);
242             }
243         }
244         wch[0] = p;
245         addnwstr(wch, 1);
246         refresh();
247         ++total_chars;
248     }
249     cleanup();
250     ExitProgram(EXIT_SUCCESS);
251 }
252
253 #else
254 int
255 main(void)
256 {
257     printf("This program requires the wide-ncurses library\n");
258     ExitProgram(EXIT_FAILURE);
259 }
260 #endif