From fe24e4f01ba6a4c628cbd36e782f11ca005e08dc Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Sat, 18 Jan 2025 06:43:22 -0500 Subject: [PATCH] Make generated C files a bit nicer to look at --- 01_text_adventure/Makefile | 10 +++++++--- 01_text_adventure/data/actions.txt | 8 ++++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/01_text_adventure/Makefile b/01_text_adventure/Makefile index 212507d..a738293 100644 --- a/01_text_adventure/Makefile +++ b/01_text_adventure/Makefile @@ -7,12 +7,16 @@ game: data/actions.c data/rooms.c data/transitions.c data/words.c data/flags.c * $(CC) *.c $(CFLAGS) -o game data/%.c: data/%.txt - echo -n "char *data_$*_txt = \"" > data/$*.c - cat data/$*.txt | perl -pe 's/\n/\\n/g' >> data/$*.c - echo "\";" >> data/$*.c + echo "char *data_$*_txt = " > data/$*.c + cat data/$*.txt | \ + perl -pe 's/ *\| */|/g' | \ + perl -pe 's/^/"/' | \ + perl -pe 's/$$/\\n"/' >> data/$*.c + echo ";" >> data/$*.c run: game ./game clean: rm -f ./game + rm -f ./data/*.c diff --git a/01_text_adventure/data/actions.txt b/01_text_adventure/data/actions.txt index ec67c98..570ad7e 100644 --- a/01_text_adventure/data/actions.txt +++ b/01_text_adventure/data/actions.txt @@ -1,4 +1,4 @@ -PULL|*|1|You don't see anything to pull| -PULL|IN(lever_room)|10|What do you want to pull?| -PULL LEVER|IN(lever_room)|100|You pull the lever. Nice.|ENABLE(lever_pulled) -PULL LEVER|IN(lever_room) & ENABLED(lever_pulled)|1000|You already pulled it.| +PULL | * | 1 | You don't see anything to pull | +PULL | IN(lever_room) | 10 | What do you want to pull? | +PULL LEVER | IN(lever_room) | 100 | You pull the lever. Nice. | ENABLE(lever_pulled) +PULL LEVER | IN(lever_room) & ENABLED(lever_pulled) | 1000 | You already pulled it. |