drivers/wifi: Remove unnecessary data structure copy
[coreboot2.git] / payloads / libpayload / curses / PDCurses / demos / rain.c
blob51d05a905625323cb9102e4142bb8bac49a64c82
1 /****************************************************************************
2 * Copyright (c) 2002 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 ****************************************************************************/
29 /* $Id: rain.c,v 1.11 2008/07/13 16:08:17 wmcbrine Exp $ */
31 #include <curses.h>
32 #include <stdlib.h>
33 #include <time.h>
35 /* rain 11/3/1980 EPS/CITHEP */
37 static int next_j(int j)
39 if (j == 0)
40 j = 4;
41 else
42 --j;
44 if (has_colors())
46 int z = rand() % 3;
47 chtype color = COLOR_PAIR(z);
49 if (z)
50 color |= A_BOLD;
52 attrset(color);
55 return j;
58 int main(int argc, char *argv[])
60 int x, y, j, r, c, seed;
61 static int xpos[5], ypos[5];
63 #ifdef XCURSES
64 Xinitscr(argc, argv);
65 #else
66 initscr();
67 #endif
68 seed = time((time_t *)0);
69 srand(seed);
71 if (has_colors())
73 int bg = COLOR_BLACK;
75 start_color();
77 #if defined(NCURSES_VERSION) || (defined(PDC_BUILD) && PDC_BUILD > 3000)
78 if (use_default_colors() == OK)
79 bg = -1;
80 #endif
81 init_pair(1, COLOR_BLUE, bg);
82 init_pair(2, COLOR_CYAN, bg);
85 nl();
86 noecho();
87 curs_set(0);
88 timeout(0);
89 keypad(stdscr, TRUE);
91 r = LINES - 4;
92 c = COLS - 4;
94 for (j = 5; --j >= 0;)
96 xpos[j] = rand() % c + 2;
97 ypos[j] = rand() % r + 2;
100 for (j = 0;;)
102 x = rand() % c + 2;
103 y = rand() % r + 2;
105 mvaddch(y, x, '.');
107 mvaddch(ypos[j], xpos[j], 'o');
109 j = next_j(j);
110 mvaddch(ypos[j], xpos[j], 'O');
112 j = next_j(j);
113 mvaddch(ypos[j] - 1, xpos[j], '-');
114 mvaddstr(ypos[j], xpos[j] - 1, "|.|");
115 mvaddch(ypos[j] + 1, xpos[j], '-');
117 j = next_j(j);
118 mvaddch(ypos[j] - 2, xpos[j], '-');
119 mvaddstr(ypos[j] - 1, xpos[j] - 1, "/ \\");
120 mvaddstr(ypos[j], xpos[j] - 2, "| O |");
121 mvaddstr(ypos[j] + 1, xpos[j] - 1, "\\ /");
122 mvaddch(ypos[j] + 2, xpos[j], '-');
124 j = next_j(j);
125 mvaddch(ypos[j] - 2, xpos[j], ' ');
126 mvaddstr(ypos[j] - 1, xpos[j] - 1, " ");
127 mvaddstr(ypos[j], xpos[j] - 2, " ");
128 mvaddstr(ypos[j] + 1, xpos[j] - 1, " ");
129 mvaddch(ypos[j] + 2, xpos[j], ' ');
131 xpos[j] = x;
132 ypos[j] = y;
134 switch (getch())
136 case 'q':
137 case 'Q':
138 curs_set(1);
139 endwin();
140 return EXIT_SUCCESS;
141 case 's':
142 nodelay(stdscr, FALSE);
143 break;
144 case ' ':
145 nodelay(stdscr, TRUE);
146 #ifdef KEY_RESIZE
147 break;
148 case KEY_RESIZE:
149 # ifdef PDCURSES
150 resize_term(0, 0);
151 erase();
152 # endif
153 r = LINES - 4;
154 c = COLS - 4;
155 #endif
157 napms(50);