ECWolf - Wolfenstein 3D source port for mods
-
I have created a quick mod install script to make it more easy to install mods into the ECWolf installation. You can find it in the new Extra section in the top of the topic. You can also do this manually by following the instructions for how to install mods in the first post.
The mod install script must be used in Raspbian Desktop with a keyboard, since you will be required to name the mod before it will be installed into ECWolf. You can name the mod with "spaces" as the script has been made sure to work this way.
At the moment it is only one .pk3 file it can handle to install. If you have more than one .pk3 placed in the new ecwolf folder that has been created, it will still create the .ecwolf file and mod.sh file, but it might not move the .pk3 files to the wolf3d roms. For this you can move them manually.
-
Some code polishing
You can avoid the additional dot as long as you don't parse additionals parameters to this. Helpers accepts source path and extraction path and shifts these 2 arguments.
So if you use additional parameters they will be shifted!
So I guess following. To just extract to current path just usedownloadAndExtract zipfile
if you use paramters then USE the destinationdownloadAndExtract zipfile extractto -parameter1 -parameter2
downloadAndExtract "https://bitbucket.org/ecwolf/ecwolf/get/5065aaefe055.zip" . downloadAndExtract "https://bitbucket.org/ecwolf/ecwolf/get/5065aaefe055.zip"
Edit: I think use the
find .
command
Do not remove the.
because it will strongen suggestions to search in current dir
But maybe some more advanced coders can say more to this.ecw=$(find . -iname "*.$game" -print -quit)
This may be answered by @hhromic
Because filename changes can be usefull do not collide with current Wolfenstein ports.
So I can't tell if this will higher the changes of a successfull PR or not - I think in the long term ecWolf could take advantage over Wolf4SDL. TheecWolfenstein
name is just my idea not set to stone... be creative ;)declare -A games=( ['wl1']="Wolfenstein 3D (demo)" .... ['sd3']="Wolfenstein 3D - SoD MP3 - Ultimate Challenge" ) declare -A games=( ['wl1']="ecWolfenstein 3D (demo)" .... ['sd3']="ecWolfenstein 3D - SoD MP3 - Ultimate Challenge" )
Code polishing your modscript .....
Better us a bash builtin
for i in *.pk3; do mv "$i" ..... filenames="$filenames $i" done cat.... EOF --file $filenames EOF
Using
ls
is the worst you can do ;)
You will see if you have to fight with globbing, special characters and other bash versions.
My code example resolves your issue with several pk3 files.
But this is only one way in doing something. If you use [P][p][K][k]3 then file extension does not care about upper/lower cases... ;) -
@cyperghost The downloadAndExtract command fails if i don't include the additional dot.
Error:
Error running 'unzip https://bitbucket.org/ecwolf/ecwolf/get/5065aaefe055.zip -o /tmp/tmp.GYUrhHrEWg/5065aaefe055.zip -d ' - returned 9
At least i can try to set up a PR and see how it goes. I have already managed to make the Hexen 2 scriptmodule apply after the RetroPie's scriptmodule guidelines and months have passed by without been merged.
Thank you. I was not aware that using ls is bad practice. I will try out your suggestion for the modscript. Also it is a bonus if it can handle more than one pk3 file. :-)
-
@tpo1990 Oh.... For me it worked without additonal dot but I've an older version of the RetroPie-Setup. Sorry for bothering you.
About the hexen2 branch ... Yes I know it's a long time ago you setted this PR. Don't know what's wrong here. Maybe you need to explain how the GL binary of hexen works?
About scripting:
Yes there are some don'ts in ParsingLS
ls
is fine if you want to check if the directory contains some data. I considerls
as command for human input, not for mashines.To check for a specfic file/directory you can always use the test command (= [[ ... ]])
and the mother of search is thefind
command but you really need to know the foe.
So the simplest way is imho thefor i in filename
loop.And even the internet is full of errors ;)
Here is a good tip to delete your whole mashine by accident (see last answer) -
@cyperghost No problem, i was not aware that it worked before updating the version of the RetroPie-Setup. At this moment it does not so i will keep the additional dot. :-)
The hexen2 PR was actually reviewed by joolswills and hhromic. hhromic helped me with making the scriptmodule ready so that the PR can be merged with the RetroPie project. hhromic did state that the PR is ready to merge, but no given answer by joolswills yet.
Oh yes the internet can be surprising without a doubt. :-)
-
I have updated the install mod script with your best practice and made it work with multiple .pk3 files. It only works for full Wolfenstein 3D .wl6 files. I did get it working for the demo versions as well, but decided not to make that change since it would give you this message when the mod script was used: /home/pi/RetroPie/roms/ecwolf: is a directory. . :-)
Just a little question since i don't know how to do it, how do you highlight text with "red" color in your posts?
For example this line: "ls" -
@tpo1990 The is simple Markdown the red code inside are just backticks
``
with somecode
inside.Yes I saw your script ;)
Yes the script "fails" if there are no pk3 files then*.pk3
will be used as argument.
You can achive a for loop like this, too
for i in file.a file.b
with fixed arguments.- Use
shopt
parameter and use 2.2 - Secure your loops and the output (I prefer this one)
2.1 test the file inside the the loop with[[ -f "$i" ]] || continue
2.2 set a second testcommand like[[ -n "$filenames" ]] || { echo "Error: No additional pk3-files found in $PWD"; exit; }
for i in *.pk3; do [[ -f "$i" ]] || continue mv "$i" "$HOME/RetroPie/roms/ports/wolf3d" filenames="$filenames \"$i\"" done [[ -n "$filenames" ]] || { echo "Error: No additional pk3-files found in $PWD"; exit; }
EDIT:
The escape could be needed in following cases. A pk3-file namedThe best mod.pk3
would be resolved as--file The best mod.pk3
Now you are parsing 3 files to the switch. So it's better to parse--file "The best mod.pk3"
I'm not aware how often pk3 files are splitted by spaces but it's better imho to escape the files. Easiest technique is escaping the quotes, so they are preserved. Or you push the filenames in a new array.
- Use
-
@tpo1990 said in ECWolf - Wolfenstein 3D source port for mods:
@SinisterSpatula
I think your modified ecwolf config file could provide useful to those that use the same case and that it is a good idea to add a link to the extra post that i have reserved at the moment, if i may do so with your accept.Yes, of course! :)
-
@tpo1990 great work with all of this
i just cant get the mods to lunch with your new mod installer.
i followed the easy instructions but they will not launch.im trying Claw of Eisenfaust and the file looks right
cd "." "/opt/retropie/ports/ecwolf/ecwolf" --data WL6 --file wolf3d_coe_v2.pk3 wait
but it will not launch
any thoughts?side note. any idea on how i can check to make sure i have version 1.4 cuz i have no clue
-
@ExarKunIv There are several errors made due the script output.
any thoughts?
Yes tons of, let's inspect!
- Is the data of the vanilla Wolfenstein really in the BaseDir? ... means
/home/pi/retropie/roms/ports/wolf3d
? Or is it in a subfolder? If yes then change thecd .
to next directory.... maybecd wolf3d
again. - Furthermore the file extension
WL6
could bewl6
, take a look in your gamedata how the extension looks. - The wait command is wrong. It should be
wait $!
Furthermore post always the output of
/dev/shm/runcommand.log
in pastebin or some other snippet viewer https://dpaste.de/I think the modscript should be a bit more mocked up with better detection what happens there.
- Is the data of the vanilla Wolfenstein really in the BaseDir? ... means
-
most of your thoughts are along mine as well.
but it seems i had the vanilla wolf in the wrong folder.
guess i missed that part on the readme,
opps.
well with me being a dumbass out of the way.everything is working great.
i even have the HD wolf going,Very amazing work, both you @cyperghost and @tpo1990
-
@ExarKunIv Thanks for your response ;)
@tpo1990
There is need for some bugfixing ;)
I post here a "new" script to not mess up the forum - it will expire after a few dayshttps://dpaste.de/wiKv
https://dpaste.de/7MFJ
It's using the quotations around every pk3 file, hope this works as expected ;)EDIT:
@tpo1990
Why not extend the questions to path and extension?
Then it's 100% working in every situation because the user has to setup ;) -
@SinisterSpatula Thank you i will add a link to your post in the
Extra
section of the topic, so that anyone with a GPI case will find it. :-)@ExarKunIv Thank you. Great that you got it working again after checking your files and folders for ECWolf.
@cyperghost Good to know thanks. Now i can more easily mark the code.
Alright so i followed your dpaste link and added the changes. While i tested out the new changes, i noticed that the mod script would exit immediately without notifying the user that no pk3 files has been found.
What i did to prevent this is by adding a sleep timer with the
sleep 10s;
. This will notify user for 10 seconds and then it will exit the script with theexit;
parameter. Success.I have uploaded the changes to my ECWolf git repo for anyone to try out.
-
@tpo1990 Fine ;) Will you set a PR for the scriptmodule?
-
@cyperghost Yes. That is what i intend to do :-)
-
@tpo1990 Wolfenstein IS classic gaming - plus this scriptmodule is really easier to setup than the Wolf4SDL version ;) I think it'll accepted
-
@cyperghost Yes. It's a live. The PR has been created for RetroPie project.
https://github.com/RetroPie/RetroPie-Setup/pull/2811
Edit: Now all there is left to do is fingers crossed and hopefully it will be accepted for merging. ;-)
-
@cyperghost and @tpo1990
now that i have sorted out my one problem. this is great, just one question
i have come across some nice mods, but they are not in pk3 form, they seem to be in there own standalone game.
With their own WL6 and SOD files.is there a way to use ecwolf to play these
-
@ExarKunIv I don't know. You can try on your own and give back report.
-
@ExarKunIv I have not tried it out. Can't say if it works or not. If you can somehow extract the file contents of the mod's wl6 and sod files, you could maybe import/archive it into a pk3 file that ECWolf would be able to use.
Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.
Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.