After being in development for some time, Zombie Panic! Source has the huge 3.1 release pushed out which brings with it the official Linux support.
What actually is it? Zombie Panic! Source is a cooperative, survival-horror first-person-shooter. Think of it like a dedicated infection-mode game. Most players start off as humans, while a few Zombies trying to take them down and infect them and have it spread. Two opposing teams, with very different play-styles.
So why did this upgrade take so long? As time went on and they attempted to do a major code rewrite to get around major issues, they realized how "awful" some parts of the game functioned and so they decided to blitz through it all and ship out a much bigger and better upgrade overall. They've said now this is out, they will hopefully go back to more regular updates.
The most major new features are as follows:
- Linux Client support for Ubuntu and SteamOS machines.
- Revamped recoil system to allow players to have more control
- Major source code clean-up and rewrite from the ground up to remove all code from HL2DM.
- New first-person and third-person animations for firearms, explosives and cell phone.
- Improvements to player hitbox registration synchronizing with the player's model animation.
- Reworked the melee system with 'hit rays', creating an arc of line tracers in the player's FOV.
- Enhancements to the Steam Workshop support with additional "Add-ons" menu.
- Implemented Steam Rich Presence.
- 30 new Steam Achievements.
While they only technically support Ubuntu / SteamOS, it does appear to work fine on EndeavorOS, which is pretty much just Arch Linux.
The game continues being free and you can grab Zombie Panic! Source on Steam.
QuoteWhile they only technically support Ubuntu / SteamOS, it does appear to work fine on EndeavorOS, which is pretty much just Arch Linux.
Just not enough like Arch actually, the game just comes up with a popup about a not being able to load the client library after the introvideo. A shame, I was looking forward to trying this, but at the same time I am in no mood to hunt this bug down.
Last edited by ysblokje on 16 October 2020 at 12:05 pm UTC
Quoting: ysblokjeQuoteWhile they only technically support Ubuntu / SteamOS, it does appear to work fine on EndeavorOS, which is pretty much just Arch Linux.
Just not enough like Arch actually, the game just comes up with a popup about a not being able to load the client library after the introvideo. A shame, I was looking forward to trying this, but at the same time I am in no mood to hunt this bug down.
I have the same problem on Arch [testing], with this error message:
failed to dlopen /home/hagabaka/.local/share/Steam/steamapps/common/Zombie Panic Source/zps/bin/client.so error=/home/hagabaka/.local/share/Steam/steamapps/common/Zombie Panic Source/zps/bin/libcurl.so: undefined symbol: SSLv3_client_method, version OPENSSL_1.0.0
failed to dlopen client.so error=/home/hagabaka/.local/share/Steam/steamapps/common/Zombie Panic Source/zps/bin/libcurl.so: undefined symbol: SSLv3_client_method, version OPENSSL_1.0.0
Last edited by hagabaka on 17 October 2020 at 12:52 am UTC
Quoting: hagabakaQuoting: ysblokjeQuoteWhile they only technically support Ubuntu / SteamOS, it does appear to work fine on EndeavorOS, which is pretty much just Arch Linux.
Just not enough like Arch actually, the game just comes up with a popup about a not being able to load the client library after the introvideo. A shame, I was looking forward to trying this, but at the same time I am in no mood to hunt this bug down.
I have the same problem on Arch [testing], with this error message:
failed to dlopen /home/hagabaka/.local/share/Steam/steamapps/common/Zombie Panic Source/zps/bin/client.so error=/home/hagabaka/.local/share/Steam/steamapps/common/Zombie Panic Source/zps/bin/libcurl.so: undefined symbol: SSLv3_client_method, version OPENSSL_1.0.0
failed to dlopen client.so error=/home/hagabaka/.local/share/Steam/steamapps/common/Zombie Panic Source/zps/bin/libcurl.so: undefined symbol: SSLv3_client_method, version OPENSSL_1.0.0
Replace libcurl.so with the system one from /usr/lib/libcurl.so
Quoting: exstrim401Replace libcurl.so with the system one from /usr/lib/libcurl.so
That could work, except it replaces it every time you try to start the game.
Last edited by ysblokje on 17 October 2020 at 12:20 pm UTC
Quoting: ysblokjeIt does not replaces it for me. In that case you can write sh script like this:Quoting: exstrim401Replace libcurl.so with the system one from /usr/lib/libcurl.so
That could work, except it replaces it every time you try to start the game.
#!/bin/sh
rm ~/.local/share/Steam/steamapps/common/Zombie\ Panic\ Source/zps/bin/libcurl.so
ln -s /usr/lib/libcurl.so ~/.local/share/Steam/steamapps/common/Zombie\ Panic\ Source/zps/bin/libcurl.so
and set launch params to:
~/fix_zps.sh;%command%
Quoting: exstrim401Quoting: ysblokjeIt does not replaces it for me. In that case you can write sh script like this:Quoting: exstrim401Replace libcurl.so with the system one from /usr/lib/libcurl.so
That could work, except it replaces it every time you try to start the game.
#!/bin/sh
rm ~/.local/share/Steam/steamapps/common/Zombie\ Panic\ Source/zps/bin/libcurl.so
ln -s /usr/lib/libcurl.so ~/.local/share/Steam/steamapps/common/Zombie\ Panic\ Source/zps/bin/libcurl.so
and set launch params to:~/fix_zps.sh;%command%
Your solution is close but one tiny point, the game is 32 bit not 64, so the libcurl.so you copy over the original is not being used.
Knowing that means that removing the libcurl.so when the update popup is there works and it wont crash and it wont restore the file either.
I tried this and it seems to work. Thx for pointing me in the right direction.....
I invite those who have problems to read this pinned Steam discussion thread about the known issues and the fix for those who have the problem with cURL and "client.so".
Quoting: Shepard62FRHello everyone, I'm the Linux programmer of Zombie Panic! Source.
I invite those who have problems to read this pinned Steam discussion thread about the known issues and the fix for those who have the problem with cURL and "client.so".
Have you considered incorporating your fix in the actual release? Just a friendly suggestion.
Quoting: ysblokjeHave you considered incorporating your fix in the actual release? Just a friendly suggestion.
Yes, but the problem is that the fix is "situational", it depends on which Linux distribution you are using and if you are running Steam "normally" (with the Steam Runtime) or "natively" (without the Steam Runtime thus using your system's libraries).
To develop and test ZPS under Linux, I use Ubuntu 20.04 and the game start right away without needing the fix mentioned in the Steam thread above.
See more from me