reverted spiral routine as the new implementation had no dispappearing animation
This commit is contained in:
parent
610f62a4f5
commit
f0c8d17bb4
|
@ -47,22 +47,45 @@ void test_palette2(){
|
||||||
|
|
||||||
|
|
||||||
#ifdef ANIMATION_SPIRALE
|
#ifdef ANIMATION_SPIRALE
|
||||||
void spirale(int delay) {
|
static void walk(cursor_t* cur, unsigned char steps, unsigned int delay){
|
||||||
clear_screen(0);
|
unsigned char x;
|
||||||
static signed char const delta[5] PROGMEM = {0, -1, 0, 1, 0};
|
for(x=steps;x--;){
|
||||||
unsigned char length[2] = {NUM_ROWS, NUM_COLS - 1};
|
set_cursor(cur, next_pixel(cur->pos, cur->dir));
|
||||||
unsigned char x = NUM_COLS - 1, y = NUM_ROWS;
|
wait(delay);
|
||||||
unsigned char i = 0;
|
}
|
||||||
|
}
|
||||||
|
|
||||||
while (length[i & 0x01] != 0) {
|
void spirale(unsigned int delay){
|
||||||
for (unsigned char j = 0; j < length[i & 0x01]; ++j) {
|
clear_screen(0);
|
||||||
x += pgm_read_byte(&delta[i]);
|
|
||||||
y += pgm_read_byte(&delta[i + 1]);
|
cursor_t cur;
|
||||||
setpixel((pixel){x, y}, 3);
|
cur.dir = right;
|
||||||
wait(delay);
|
cur.mode = set;
|
||||||
|
set_cursor (&cur, (pixel){NUM_COLS-1,0});
|
||||||
|
|
||||||
|
unsigned char clearbit=0;
|
||||||
|
while(clearbit == 0){
|
||||||
|
|
||||||
|
clearbit = 1;
|
||||||
|
while (!get_next_pixel(cur.pos, cur.dir)){
|
||||||
|
clearbit = 0;
|
||||||
|
walk(&cur, 1, delay);
|
||||||
|
}
|
||||||
|
cur.dir = direction_r(cur.dir);
|
||||||
|
}
|
||||||
|
|
||||||
|
cur.mode = clear;
|
||||||
|
set_cursor(&cur, (pixel){(NUM_COLS/2)-1,(NUM_ROWS/2)-1});
|
||||||
|
|
||||||
|
for(clearbit=0;clearbit==0;){
|
||||||
|
if( get_next_pixel(cur.pos, direction_r(cur.dir)) ){
|
||||||
|
cur.dir = direction_r(cur.dir);
|
||||||
|
}
|
||||||
|
if( get_next_pixel(cur.pos, cur.dir) == 1 ){
|
||||||
|
walk(&cur , 1, delay);
|
||||||
|
}else{
|
||||||
|
clearbit = 1;
|
||||||
}
|
}
|
||||||
length[i++ & 0x01]--;
|
|
||||||
i %= 4;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue