Make generated C files a bit nicer to look at
This commit is contained in:
parent
9da35b5854
commit
fe24e4f01b
@ -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
|
$(CC) *.c $(CFLAGS) -o game
|
||||||
|
|
||||||
data/%.c: data/%.txt
|
data/%.c: data/%.txt
|
||||||
echo -n "char *data_$*_txt = \"" > data/$*.c
|
echo "char *data_$*_txt = " > data/$*.c
|
||||||
cat data/$*.txt | perl -pe 's/\n/\\n/g' >> data/$*.c
|
cat data/$*.txt | \
|
||||||
echo "\";" >> data/$*.c
|
perl -pe 's/ *\| */|/g' | \
|
||||||
|
perl -pe 's/^/"/' | \
|
||||||
|
perl -pe 's/$$/\\n"/' >> data/$*.c
|
||||||
|
echo ";" >> data/$*.c
|
||||||
|
|
||||||
run: game
|
run: game
|
||||||
./game
|
./game
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f ./game
|
rm -f ./game
|
||||||
|
rm -f ./data/*.c
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
PULL|*|1|You don't see anything to pull|
|
PULL | * | 1 | You don't see anything to pull |
|
||||||
PULL|IN(lever_room)|10|What do you want 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) | 100 | You pull the lever. Nice. | ENABLE(lever_pulled)
|
||||||
PULL LEVER|IN(lever_room) & ENABLED(lever_pulled)|1000|You already pulled it.|
|
PULL LEVER | IN(lever_room) & ENABLED(lever_pulled) | 1000 | You already pulled it. |
|
||||||
|
Loading…
Reference in New Issue
Block a user