From c7013703bdbee92bc40a5c161950ea738bfb7d0d Mon Sep 17 00:00:00 2001 From: NCLanceman Date: Mon, 10 Nov 2025 20:43:08 -0600 Subject: [PATCH] night moves --- .gitignore | 3 +++ README.md | 1 + doomstarter.py | 7 +++++-- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f3e374e --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +gameplay/ +maps/ +misc/ diff --git a/README.md b/README.md index 01db086..721e86c 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,4 @@ A Python script for running Doom, handling numerous sourceports, maps, and gameplay WADs. (11/10/25) Initial Commit: Works on my machine! +# doomstarter diff --git a/doomstarter.py b/doomstarter.py index 71a8004..3a96e45 100644 --- a/doomstarter.py +++ b/doomstarter.py @@ -25,14 +25,17 @@ if (os.path.isdir('misc') == False): sourceport_dict = { "UZDoom": { "runcommand": "uzdoom-alpha" + }, + "Woof": { + "runcommand": "~/Games/Woof/woof/build/src/woof" } } print("The command for running UZDoom is: " + sourceport_dict["UZDoom"]["runcommand"]) print("Running UZDoom with no arguements...") -subprocess.run(sourceport_dict["UZDoom"]["runcommand"]) - +subprocess.run(sourceport_dict["UZDoom"]["runcommand"], shell=True) +# subprocess.run(sourceport_dict["Woof"]["runcommand"], shell=True) # List all that stuff in a file