]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/echochar.c
0033f8735b4e992b6ce9a0f20c5176451176882c
[ncurses.git] / test / echochar.c
1 /****************************************************************************
2  * Copyright 2019-2020,2022 Thomas E. Dickey                                *
3  * Copyright 2006-2014,2017 Free Software Foundation, Inc.                  *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29 /*
30  * $Id: echochar.c,v 1.24 2022/12/04 00:40:11 tom Exp $
31  *
32  * Demonstrate the echochar function (compare to dots.c).
33  * Thomas Dickey - 2006/11/4
34  */
35
36 #include <test.priv.h>
37
38 #include <time.h>
39
40 static bool interrupted = FALSE;
41 static long total_chars = 0;
42 static time_t started;
43
44 static void
45 cleanup(void)
46 {
47     stop_curses();
48
49     printf("\n\n%ld total cells, rate %.2f/sec\n",
50            total_chars,
51            ((double) (total_chars) / (double) (time((time_t *) 0) - started)));
52 }
53
54 static void
55 onsig(int n GCC_UNUSED)
56 {
57     interrupted = TRUE;
58 }
59
60 static double
61 ranf(void)
62 {
63     long r = (rand() & 077777);
64     return ((double) r / 32768.);
65 }
66
67 static void
68 set_color(char *my_pairs, int fg, int bg)
69 {
70     int pair = (fg * COLORS) + bg;
71     if (pair < COLOR_PAIRS) {
72         if (!my_pairs[pair]) {
73             init_pair((short) pair,
74                       (short) fg,
75                       (short) bg);
76         }
77         attron(COLOR_PAIR(pair));
78     }
79 }
80
81 static void
82 usage(int ok)
83 {
84     static const char *msg[] =
85     {
86         "Usage: echochar"
87         ,""
88         ,USAGE_COMMON
89         ,"Options:"
90         ," -r       use addch/refresh rather than echochar()"
91     };
92     size_t n;
93
94     for (n = 0; n < SIZEOF(msg); n++)
95         fprintf(stderr, "%s\n", msg[n]);
96
97     ExitProgram(ok ? EXIT_SUCCESS : EXIT_FAILURE);
98 }
99 /* *INDENT-OFF* */
100 VERSION_COMMON()
101 /* *INDENT-ON* */
102
103 int
104 main(int argc GCC_UNUSED,
105      char *argv[]GCC_UNUSED)
106 {
107     int ch;
108     double r;
109     double c;
110     bool use_colors;
111     bool opt_r = FALSE;
112     char *my_pairs = 0;
113     int last_fg = 0;
114     int last_bg = 0;
115
116     while ((ch = getopt(argc, argv, OPTS_COMMON "r")) != -1) {
117         switch (ch) {
118         case 'r':
119             opt_r = TRUE;
120             break;
121         case OPTS_VERSION:
122             show_version(argv);
123             ExitProgram(EXIT_SUCCESS);
124         default:
125             usage(ch == OPTS_USAGE);
126             /* NOTREACHED */
127         }
128     }
129
130     InitAndCatch(initscr(), onsig);
131
132     use_colors = has_colors();
133     if (use_colors) {
134         start_color();
135         if (COLOR_PAIRS > 0) {
136             my_pairs = typeCalloc(char, (size_t) COLOR_PAIRS);
137         }
138         use_colors = (my_pairs != 0);
139     }
140
141     srand((unsigned) time(0));
142
143     curs_set(0);
144
145     r = (double) (LINES - 4);
146     c = (double) (COLS - 4);
147     started = time((time_t *) 0);
148
149     while (!interrupted) {
150         int x = (int) (c * ranf()) + 2;
151         int y = (int) (r * ranf()) + 2;
152         int p = (ranf() > 0.9) ? '*' : ' ';
153
154         move(y, x);
155         if (use_colors > 0) {
156             int z = (int) (ranf() * COLORS);
157             if (ranf() > 0.01) {
158                 set_color(my_pairs, z, last_bg);
159                 last_fg = z;
160             } else {
161                 set_color(my_pairs, last_fg, z);
162                 last_bg = z;
163                 napms(1);
164             }
165         } else {
166             if (ranf() <= 0.01) {
167                 if (ranf() > 0.6)
168                     attron(A_REVERSE);
169                 else
170                     attroff(A_REVERSE);
171                 napms(1);
172             }
173         }
174         if (opt_r) {
175             AddCh(UChar(p));
176             refresh();
177         } else {
178             echochar(UChar(p));
179         }
180         ++total_chars;
181     }
182     cleanup();
183     free(my_pairs);
184     ExitProgram(EXIT_SUCCESS);
185 }