Allow different speed animations for each light in spooky and eerie
This commit is contained in:
parent
aefb2184bf
commit
cf21388bd8
118
lantern/main.c
118
lantern/main.c
|
@ -149,77 +149,69 @@ void lantern_start_normal(lantern_t *self, rng_t *rng, int light_idx) {
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
void lantern_start_spooky(lantern_t *self, rng_t *rng) {
|
||||
animation_begin(
|
||||
&self->animations[0],
|
||||
0,
|
||||
random_step(self->animations[0].color.g, 80, 120, rng),
|
||||
0,
|
||||
15);
|
||||
animation_begin(
|
||||
&self->animations[1],
|
||||
0,
|
||||
random_step(self->animations[1].color.g, 60, 100, rng),
|
||||
0,
|
||||
15);
|
||||
animation_begin(
|
||||
&self->animations[2],
|
||||
0,
|
||||
random_step(self->animations[2].color.g, 20, 40, rng),
|
||||
0,
|
||||
15);
|
||||
void lantern_start_spooky(lantern_t *self, rng_t *rng, int light_idx) {
|
||||
switch (light_idx) {
|
||||
case 0:
|
||||
animation_begin(
|
||||
&self->animations[0],
|
||||
0,
|
||||
random_step(self->animations[0].color.g, 80, 120, rng),
|
||||
0,
|
||||
15);
|
||||
break;
|
||||
case 1:
|
||||
animation_begin(
|
||||
&self->animations[1],
|
||||
0,
|
||||
random_step(self->animations[1].color.g, 60, 100, rng),
|
||||
0,
|
||||
15);
|
||||
break;
|
||||
case 2:
|
||||
animation_begin(
|
||||
&self->animations[2],
|
||||
0,
|
||||
random_step(self->animations[2].color.g, 20, 40, rng),
|
||||
0,
|
||||
15);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void lantern_start_eerie(lantern_t *self, rng_t *rng) {
|
||||
animation_begin(
|
||||
&self->animations[0],
|
||||
random_step(self->animations[0].color.g, 20, 40, rng),
|
||||
random_step(self->animations[0].color.g, 20, 40, rng),
|
||||
random_step(self->animations[0].color.g, 80, 120, rng),
|
||||
15);
|
||||
animation_begin(
|
||||
&self->animations[1],
|
||||
random_step(self->animations[0].color.g, 0, 30, rng),
|
||||
random_step(self->animations[0].color.g, 0, 30, rng),
|
||||
random_step(self->animations[1].color.g, 60, 100, rng),
|
||||
15);
|
||||
animation_begin(
|
||||
&self->animations[2],
|
||||
random_step(self->animations[0].color.g, 0, 10, rng),
|
||||
random_step(self->animations[0].color.g, 0, 10, rng),
|
||||
random_step(self->animations[2].color.g, 20, 40, rng),
|
||||
15);
|
||||
void lantern_start_eerie(lantern_t *self, rng_t *rng, int light_idx) {
|
||||
switch (light_idx) {
|
||||
case 0:
|
||||
animation_begin(
|
||||
&self->animations[0],
|
||||
random_step(self->animations[0].color.g, 20, 40, rng),
|
||||
random_step(self->animations[0].color.g, 20, 40, rng),
|
||||
random_step(self->animations[0].color.g, 80, 120, rng),
|
||||
15);
|
||||
break;
|
||||
case 1:
|
||||
animation_begin(
|
||||
&self->animations[1],
|
||||
random_step(self->animations[0].color.g, 0, 30, rng),
|
||||
random_step(self->animations[0].color.g, 0, 30, rng),
|
||||
random_step(self->animations[1].color.g, 60, 100, rng),
|
||||
30);
|
||||
break;
|
||||
case 2:
|
||||
animation_begin(
|
||||
&self->animations[2],
|
||||
random_step(self->animations[0].color.g, 0, 10, rng),
|
||||
random_step(self->animations[0].color.g, 0, 10, rng),
|
||||
random_step(self->animations[2].color.g, 20, 40, rng),
|
||||
45);
|
||||
break;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
void lantern_set_mode(lantern_t *self, color_scheme_e scheme) {
|
||||
self->color_scheme = scheme;
|
||||
}
|
||||
|
||||
void lantern_step(lantern_t *self, display_t *display, rng_t *rng, rgb_t colors[LIGHT_COUNT]) {
|
||||
/*
|
||||
if (!animation_running(&self->animations[0])) {
|
||||
// display_lantern(display, self);
|
||||
switch (self->color_scheme) {
|
||||
case test:
|
||||
lantern_start_test(self);
|
||||
break;
|
||||
case normal:
|
||||
lantern_start_normal(self, rng);
|
||||
break;
|
||||
case spooky:
|
||||
lantern_start_spooky(self, rng);
|
||||
break;
|
||||
case eerie:
|
||||
lantern_start_eerie(self, rng);
|
||||
break;
|
||||
case flash:
|
||||
break;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
for (int i = 0; i < LIGHT_COUNT; i++) {
|
||||
if (!animation_running(&self->animations[i])) {
|
||||
switch (self->color_scheme) {
|
||||
|
@ -227,8 +219,10 @@ void lantern_step(lantern_t *self, display_t *display, rng_t *rng, rgb_t colors[
|
|||
lantern_start_normal(self, rng, i);
|
||||
break;
|
||||
case spooky:
|
||||
lantern_start_spooky(self, rng, i);
|
||||
break;
|
||||
case eerie:
|
||||
lantern_start_eerie(self, rng, i);
|
||||
break;
|
||||
case flash:
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue