Skip to content

Commit

Permalink
Add further support for the rest of the doom combo
Browse files Browse the repository at this point in the history
  • Loading branch information
d10sfan committed Aug 8, 2024
1 parent c55b32b commit 9413ed9
Show file tree
Hide file tree
Showing 3 changed files with 551 additions and 1 deletion.
25 changes: 25 additions & 0 deletions engines/gzdoom/assets/run-gzdoom-2-master-levels-combo.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

export SteamDeck=""
unset SteamDeck

if [ ! -f doom_complete.pk3 ]; then
cd wadsmoosh-branch-default
cp -rfv ../wadsmoosh.py ./

cp -rfv ../masterbase/master/wads/*.WAD "source_wads/"
cp -rfv ../base/*.WAD "source_wads/"
python3.9 wadsmoosh.py
cp -rfv ./doom_complete.pk3 ../

cd ../
fi

if [ ! -f ~/.config/gzdoom/gzdoom.ini ]; then
if [ ! -d ~/.config/gzdoom ]; then
mkdir -p ~/.config/gzdoom
fi
cp -rfv ./gzdoom_template.ini ~/.config/gzdoom/gzdoom.ini
fi

LD_LIBRARY_PATH="lib:$LD_LIBRARY_PATH" ./gzdoom "$@"
2 changes: 1 addition & 1 deletion engines/gzdoom/assets/run-gzdoom-2-master-levels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ ! -f doom_complete.pk3 ]; then
cd wadsmoosh-branch-default
cp -rfv ../wadsmoosh.py ./

cp -rfv ../masterbase/master/wads/*.WAD "source_wads/"
cp -rfv ../base/master/wads/*.WAD "source_wads/"
cp -rfv ../base/*.WAD "source_wads/"
python3.9 wadsmoosh.py
cp -rfv ./doom_complete.pk3 ../
Expand Down
Loading

0 comments on commit 9413ed9

Please sign in to comment.