From 8e86d0dca3e10ec1ed9f205b9e8222f6555612ad Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 19 May 2017 13:30:12 -0400 Subject: [PATCH] Documentation polishing. Add TODO. --- Makefile | 2 +- TODO | 9 +++++++++ advent.txt | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 TODO diff --git a/Makefile b/Makefile index 8565755..68ffd5b 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Makefile for the open-source release of adventure 2.5 OBJS=main.o init.o actions1.o actions2.o score.o misc.o -SOURCES=$(OBJS:.o=.c) COPYING NEWS README advent.text control +SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO advent.text control .c.o: gcc -O $(DBX) -c $< diff --git a/TODO b/TODO new file mode 100644 index 0000000..4c7ab1b --- /dev/null +++ b/TODO @@ -0,0 +1,9 @@ += Open Adventure TODO = + +* Add command logging and command log replay. + +* Use that feature to make regression tests from walkthroughs. + +* Translate the FORTRANish mess to actual C. + +* Inline the database so the code doesn't need an external file. diff --git a/advent.txt b/advent.txt index 2b063df..f286e83 100644 --- a/advent.txt +++ b/advent.txt @@ -30,7 +30,7 @@ ADVENTURE:: == REPORTING BUGS == Report bugs to Eric S. Raymond . The project page is -at http://catb.org/~esr/open-advent +at http://catb.org/~esr/advent == SEE ALSO == wumpus(6), adventure(6), zork(6), rogue(6), nethack(6). -- 2.31.1