borgware-2d/src/animations/program.h

31 lines
477 B
C
Raw Permalink Normal View History

#ifndef PROGRAMM_H_
#define PROGRAMM_H_
#include <stdbool.h>
2011-03-07 01:12:03 +00:00
#include "../pixel.h"
#include "../util.h"
void test_level(unsigned char level, bool debug);
void test_palette(bool debug);
void test_palette2(bool debug);
2009-02-26 00:04:45 +00:00
2011-02-25 22:57:49 +00:00
#ifdef ANIMATION_OFF
inline static void off()
{
clear_screen(0);
2009-02-26 00:04:45 +00:00
2011-02-25 22:57:49 +00:00
while(1)
wait(100);
2009-02-26 00:04:45 +00:00
2011-02-25 22:57:49 +00:00
}
#endif
2009-02-26 00:04:45 +00:00
void spiral(int delay);
2011-02-25 22:57:49 +00:00
void joern1();
void checkerboard(unsigned char times);
2011-11-07 22:35:57 +00:00
void fire();
void random_bright(unsigned cycles);
#endif /* PROGRAMM_H_ */