Added Langton\'s Ant to animations + some whitespace fun.

This commit is contained in:
alu 2010-04-11 06:29:08 +00:00
parent c6680ff94f
commit e4186bd02b
3 changed files with 31 additions and 19 deletions

View File

@ -29,4 +29,8 @@ ifeq ($(ANIMATION_BREAKOUT),y)
SRC += breakout_demo.c
endif
ifeq ($(ANIMATION_LTN_ANT),y)
SRC += ltn_ant.c
endif
include $(TOPDIR)/rules.mk

View File

@ -76,6 +76,7 @@ comment "Animations"
dep_bool "Game of Life" ANIMATION_GAMEOFLIFE $RANDOM_SUPPORT
dep_bool "Breakout Demo" ANIMATION_BREAKOUT $GAME_BREAKOUT
bool "M Herweg" ANIMATION_MHERWEG
bool "Langton Ant" ANIMATION_LTN_ANT $RANDOM_SUPPORT
comment "Special Animations"
bool "Test Animations" ANIMATION_TESTS

View File

@ -10,6 +10,7 @@
#include "animations/stonefly.h"
#include "animations/flyingdots.h"
#include "animations/breakout_demo.h"
#include "animations/ltn_ant.h"
#include "borg_hw/borg_hw.h"
#include "can/borg_can.h"
#include "random/prng.h"
@ -135,6 +136,12 @@ void display_loop(){
break;
#endif
#ifdef ANIMATION_LTN_ANT
case 14:
ltn_ant();
break;
#endif
#ifdef ANIMATION_TESTS
case 31:
test_level1();