]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/echochar.c
ncurses 6.2 - patch 20200718
[ncurses.git] / test / echochar.c
1 /****************************************************************************
2  * Copyright 2019,2020 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.21 2020/02/02 23:34:34 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 int
82 main(int argc GCC_UNUSED,
83      char *argv[]GCC_UNUSED)
84 {
85     int ch;
86     double r;
87     double c;
88     bool use_colors;
89     bool opt_r = FALSE;
90     char *my_pairs = 0;
91     int last_fg = 0;
92     int last_bg = 0;
93
94     while ((ch = getopt(argc, argv, "r")) != -1) {
95         switch (ch) {
96         case 'r':
97             opt_r = TRUE;
98             break;
99         default:
100             fprintf(stderr, "Usage: echochar [-r]\n");
101             ExitProgram(EXIT_FAILURE);
102         }
103     }
104
105     InitAndCatch(initscr(), onsig);
106
107     use_colors = has_colors();
108     if (use_colors) {
109         start_color();
110         if (COLOR_PAIRS > 0) {
111             my_pairs = typeCalloc(char, (size_t) COLOR_PAIRS);
112         }
113         use_colors = (my_pairs != 0);
114     }
115
116     srand((unsigned) time(0));
117
118     curs_set(0);
119
120     r = (double) (LINES - 4);
121     c = (double) (COLS - 4);
122     started = time((time_t *) 0);
123
124     while (!interrupted) {
125         int x = (int) (c * ranf()) + 2;
126         int y = (int) (r * ranf()) + 2;
127         int p = (ranf() > 0.9) ? '*' : ' ';
128
129         move(y, x);
130         if (use_colors > 0) {
131             int z = (int) (ranf() * COLORS);
132             if (ranf() > 0.01) {
133                 set_color(my_pairs, z, last_bg);
134                 last_fg = z;
135             } else {
136                 set_color(my_pairs, last_fg, z);
137                 last_bg = z;
138                 napms(1);
139             }
140         } else {
141             if (ranf() <= 0.01) {
142                 if (ranf() > 0.6)
143                     attron(A_REVERSE);
144                 else
145                     attroff(A_REVERSE);
146                 napms(1);
147             }
148         }
149         if (opt_r) {
150             AddCh(UChar(p));
151             refresh();
152         } else {
153             echochar(UChar(p));
154         }
155         ++total_chars;
156     }
157     cleanup();
158     free(my_pairs);
159     ExitProgram(EXIT_SUCCESS);
160 }