blob: df9966eb38a37c803904c1c74472db6df22ed8fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2002 Itai Shaked
*
* All files in this archive are subject to the GNU General Public License.
* See the file COPYING in the source tree root for full license agreement.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
**************************************************************************/
#include "plugin.h"
#ifdef HAVE_LCD_BITMAP
#define NUM_PARTICLES 100
static short particles[NUM_PARTICLES][2];
static struct plugin_api* rb;
static bool particle_exists(int particle)
{
if (particles[particle][0]>=0 && particles[particle][1]>=0 &&
particles[particle][0]<112 && particles[particle][1]<64)
return true;
else
return false;
}
static int create_particle(void)
{
int i;
for (i=0; i<NUM_PARTICLES; i++) {
if (!particle_exists(i)) {
particles[i][0]=(rb->rand()%112);
particles[i][1]=0;
return i;
}
}
return -1;
}
static void snow_move(void)
{
int i;
if (!(rb->rand()%2))
create_particle();
for (i=0; i<NUM_PARTICLES; i++) {
if (particle_exists(i)) {
rb->lcd_clearpixel(particles[i][0],particles[i][1]);
switch ((rb->rand()%7)) {
case 0:
particles[i][0]++;
break;
case 1:
particles[i][0]--;
break;
case 2:
break;
default:
particles[i][1]++;
break;
}
if (particle_exists(i))
rb->lcd_drawpixel(particles[i][0],particles[i][1]);
}
}
}
static void snow_init(void)
{
int i;
for (i=0; i<NUM_PARTICLES; i++) {
particles[i][0]=-1;
particles[i][1]=-1;
}
rb->lcd_clear_display();
}
enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
{
TEST_PLUGIN_API(api);
(void)(parameter);
rb = api;
snow_init();
while (1) {
snow_move();
rb->lcd_update();
rb->sleep(HZ/20);
if (rb->button_get(false) == BUTTON_OFF)
return false;
}
}
#endif
|