Browse Source

night moves

master
NCLanceman 2 weeks ago
parent
commit
c7013703bd
  1. 3
      .gitignore
  2. 1
      README.md
  3. 7
      doomstarter.py

3
.gitignore

@ -0,0 +1,3 @@
gameplay/
maps/
misc/

1
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

7
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

Loading…
Cancel
Save