├── .gitignore ├── ANNOUNCE ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── THANKS ├── TODO ├── acinclude.m4 ├── autogen.sh ├── buggy.c ├── car.img ├── checklist ├── configure.ac ├── cursor.c ├── darray.h ├── date.c ├── error.c ├── game.c ├── ground.c ├── highscore.c ├── hpath.c ├── img.sed ├── instcmds ├── keyboard.c ├── laser.c ├── level.c ├── main.c ├── manpage.in ├── meteor.c ├── mode.c ├── moon-buggy.h ├── moon-buggy.lsm ├── moon-buggy.png ├── moon-buggy.texi ├── moon-buggy.xpm ├── pager.c ├── persona.c ├── queue.c ├── random.c ├── realname.c ├── signal.c ├── terminal.c ├── test-score-modes ├── text2c.sed ├── title.c ├── title.eps ├── vclock.c ├── xmalloc.c └── xstrdup.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/.gitignore -------------------------------------------------------------------------------- /ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/ANNOUNCE -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Jochen Voss 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/README -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/TODO -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/autogen.sh -------------------------------------------------------------------------------- /buggy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/buggy.c -------------------------------------------------------------------------------- /car.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/car.img -------------------------------------------------------------------------------- /checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/checklist -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/configure.ac -------------------------------------------------------------------------------- /cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/cursor.c -------------------------------------------------------------------------------- /darray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/darray.h -------------------------------------------------------------------------------- /date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/date.c -------------------------------------------------------------------------------- /error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/error.c -------------------------------------------------------------------------------- /game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/game.c -------------------------------------------------------------------------------- /ground.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/ground.c -------------------------------------------------------------------------------- /highscore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/highscore.c -------------------------------------------------------------------------------- /hpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/hpath.c -------------------------------------------------------------------------------- /img.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/img.sed -------------------------------------------------------------------------------- /instcmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/instcmds -------------------------------------------------------------------------------- /keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/keyboard.c -------------------------------------------------------------------------------- /laser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/laser.c -------------------------------------------------------------------------------- /level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/level.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/main.c -------------------------------------------------------------------------------- /manpage.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/manpage.in -------------------------------------------------------------------------------- /meteor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/meteor.c -------------------------------------------------------------------------------- /mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/mode.c -------------------------------------------------------------------------------- /moon-buggy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/moon-buggy.h -------------------------------------------------------------------------------- /moon-buggy.lsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/moon-buggy.lsm -------------------------------------------------------------------------------- /moon-buggy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/moon-buggy.png -------------------------------------------------------------------------------- /moon-buggy.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/moon-buggy.texi -------------------------------------------------------------------------------- /moon-buggy.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/moon-buggy.xpm -------------------------------------------------------------------------------- /pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/pager.c -------------------------------------------------------------------------------- /persona.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/persona.c -------------------------------------------------------------------------------- /queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/queue.c -------------------------------------------------------------------------------- /random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/random.c -------------------------------------------------------------------------------- /realname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/realname.c -------------------------------------------------------------------------------- /signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/signal.c -------------------------------------------------------------------------------- /terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/terminal.c -------------------------------------------------------------------------------- /test-score-modes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/test-score-modes -------------------------------------------------------------------------------- /text2c.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/text2c.sed -------------------------------------------------------------------------------- /title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/title.c -------------------------------------------------------------------------------- /title.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/title.eps -------------------------------------------------------------------------------- /vclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/vclock.c -------------------------------------------------------------------------------- /xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/xmalloc.c -------------------------------------------------------------------------------- /xstrdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seehuhn/moon-buggy/HEAD/xstrdup.c --------------------------------------------------------------------------------