borgware-2d/display_loop.c

210 lines
2.9 KiB
C

#include <setjmp.h>
#include <stdio.h>
#include "config.h"
#include "scrolltext/scrolltext.h"
#include "animations/programm.h"
#include "animations/matrix.h"
#include "animations/gameoflife.h"
#include "animations/stonefly.h"
#include "animations/flyingdots.h"
#include "animations/breakout_demo.h"
#include "animations/ltn_ant.h"
#include "animations/laborlogo.h"
#include "borg_hw/borg_hw.h"
#include "can/borg_can.h"
#include "random/prng.h"
#include "random/persistentCounter.h"
#include "mcuf/mcuf.h"
#include "menu/menu.h"
#include "pixel.h"
#include "joystick/joystick.h"
volatile unsigned char oldMode, oldOldmode, mode;
jmp_buf newmode_jmpbuf;
#ifndef MENU_SUPPORT
void snake_game(void);
void tetris(void);
void tetris_bastet(void);
void borg_invaders(void);
#endif
void display_loop(){
// mcuf_serial_mode();
mode = setjmp(newmode_jmpbuf);
oldOldmode = oldMode;
#ifdef JOYSTICK_SUPPORT
waitForFire = 1;
#endif
for(;;){
oldMode = mode;
switch(mode++) {
#ifdef ANIMATION_SCROLLTEXT
case 1:
scrolltext(scrolltext_text);
#ifdef RANDOM_SUPPORT
{ char a[28];
sprintf(a,"</# counter == %lu ", percnt_get());
scrolltext(a);
}
#endif
break;
#endif
#ifdef ANIMATION_SPIRALE
case 2:
spirale(5);
break;
#endif
#ifdef ANIMATION_JOERN1
case 3:
joern1();
break;
#endif
#ifdef ANIMATION_SNAKE
case 4:
snake();
break;
#endif
#ifdef ANIMATION_SCHACHBRETT
case 5:
schachbrett(10);
break;
#endif
#ifdef ANIMATION_FEUER
case 6:
feuer();
break;
#endif
#ifdef ANIMATION_MATRIX
case 7:
matrix();
break;
#endif
#ifdef ANIMATION_RANDOM_BRIGHT
case 8:
random_bright(30);
break;
#endif
#ifdef ANIMATION_STONEFLY
case 9:
stonefly();
break;
#endif
#ifdef ANIMATION_GAMEOFLIFE
case 10:
gameoflife();
break;
#endif
#ifdef ANIMATION_FLYINGDOTS
case 11:
flyingdots();
break;
#endif
#ifdef ANIMATION_BREAKOUT
case 12:
breakout_demo();
break;
#endif
#ifdef ANIMATION_MHERWEG
case 13:
lines1();
dots1();
movinglines();
checkbox();
rectangle1();
rectangles();
break;
#endif
#ifdef ANIMATION_LTN_ANT
case 14:
ltn_ant();
break;
#endif
#ifdef ANIMATION_LABORLOGO
case 15:
laborlogo();;
break;
#endif
#ifdef ANIMATION_TESTS
case 31:
test_level1();
break;
case 32:
test_level2();
break;
case 33:
test_level3();
break;
case 35:
test_palette();
test_palette2();
break;
#endif
case 42:
mode = 1;
break;
#ifdef MENU_SUPPORT
case 43:
menu();
mode = oldOldmode;
#else
#ifdef GAME_TETRIS
case 43:
tetris();
break;
#endif
#ifdef GAME_BASTET
case 44:
tetris_bastet();
break;
#endif
#ifdef GAME_SPACE_INVADERS
case 45:
borg_invaders();
break;
#endif
#ifdef GAME_SNAKE
case 46:
snake_game();
break;
#endif
#endif
#ifdef ANIMATION_OFF
case 0xFF:
off();
break;
#endif
}
}
}