From 43f4fce5ddb9acb7ae8047e20b7ac6fca7f15f0a Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Wed, 29 Jan 2025 05:13:32 -0500 Subject: [PATCH] Programatically skip the intro --- 01_text_adventure/Makefile | 4 ++-- 01_text_adventure/main.c | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/01_text_adventure/Makefile b/01_text_adventure/Makefile index 950e751..efc1440 100644 --- a/01_text_adventure/Makefile +++ b/01_text_adventure/Makefile @@ -30,10 +30,10 @@ data/%.c: data/%.txt echo ";" >> data/$*.c run: $(GAME)_linux - ./$(GAME)_linux + SKIP_INTRO=1 ./$(GAME)_linux run_win: $(GAME)_windows.exe - wine $(GAME)_windows.exe + SKIP_INTRO=1 wine $(GAME)_windows.exe clean: rm -f ./$(GAME)_linux diff --git a/01_text_adventure/main.c b/01_text_adventure/main.c index cd0aaee..2dff235 100644 --- a/01_text_adventure/main.c +++ b/01_text_adventure/main.c @@ -1,6 +1,7 @@ #include #include #include +#include #include @@ -11,9 +12,11 @@ int main(int argc, char** argv) { InitWindow(800, 450, "Text Adventure"); SetTargetFPS(60); - display_loading(); - Intro *i = load_intro(); - intro_display(i); + if (!getenv("SKIP_INTRO") || strcmp(getenv("SKIP_INTRO"), "1") != 0) { + display_loading(); + Intro *i = load_intro(); + intro_display(i); + } Game *g = game_create();