Make generated C files a bit nicer to look at

This commit is contained in:
Bill Rossi 2025-01-18 06:43:22 -05:00
parent 9da35b5854
commit fe24e4f01b
2 changed files with 11 additions and 7 deletions

View File

@ -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

View File

@ -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. |