Vulkan Serious Engine port based on open source version.
Prerequisites:
- Vulkan Header files and API registry
- Vulkan Validation Layers
- Vulkan Installable Client Driver (ICD) Loader
This is the source code for Serious Engine v.1.10, including the following projects:
DedicatedServer
Ecc
The Entity Class Compiler, a custom build tool used to compile *.es filesEngine
Serious Engine 1.10EngineGUI
Common GUI things for game toolsEntitiesMP
All the entity logicGameGUIMP
Common GUI things for game toolsGameMP
All the game logicModeler
Serious ModelerRCon
Used to connect to servers using an admin passwordSeriousSam
The main game executableSeriousSkaStudio
Serious Ska StudioWorldEditor
Serious EditorDecodeReport
Used to decode crash *.rpt filesDepend
Used to build a list of dependency files based on a list of root filesLWSkaExporter
Exporter for use in LightWaveMakeFONT
Used for generating *.fnt filesShaders
Compiled shadersGameAgent
The serverlist masterserver written in Pythonlibogg
,libvorbis
Third party libraries used for playing OGG-encoded ingame music (see http://www.vorbis.com/ for more information)
Type this in your terminal:
sudo apt-get install build-essential libsdl2-dev cmake libvorbis-dev flex bison git libxxhash-dev
sudo apt-get install libvulkan1 libvulkan-dev vulkan-validationlayers vulkan-validationlayers-dev
Note: libsdl2-dev version >= 2.0.6, vulkan packages version >= 1.2.xxx
- For Debian 10, you can install vulkan packages from backports.
More detailed information about building the game for different operating systems and different platforms can be found on the SeriousSamClassic-VK wiki.
There are still many asserts in the engine. Most of them are irrelevant and should be removed, but while it's not done, the asserts will effectively kill the engine when triggered in the Debug build. Use Release or RelWithDebInfo build if you intend to play (automatically set as RelWithDebInfo in the build scripts).
Type this in your terminal:
git clone https://github.com/tx00100xt/SeriousSamClassic-VK.git SeriousSamClassic-VK
If you have access to a copy of the game (either by CD or through Steam), you can copy the *.gro files from the game directory to the repository. (SeriousSamClassic-VK/SamTFE is the directory of the game Serious Sam Classic The First Encounter, SeriousSamClassic-VK/SamTSE is the directory of the game Serious Sam Classic The Second Encounter)
Type this in your terminal:
cd SeriousSamClassic-VK/SamTFE/Sources
./build-linux64.sh -DTFE=TRUE # use build-linux32.sh for 32-bits
Type this in your terminal:
cd SeriousSamClassic-VK/SamTSE/Sources
./build-linux64.sh # use build-linux32.sh for 32-bits
To build a game for gentoo, use a https://github.com/tx00100xt/serioussam-overlay containing ready-made ebuilds for building the game and add-ons.
To build a game under Arch Linux you can use the package from AUR: https://aur.archlinux.org/packages/serioussam-vk
The build for raspberry pi is similar to the build for Linux, you just need to add an additional build key.
cd SeriousSamClassic-VK/SamTFE/Sources
./build-linux64.sh -DTFE=TRUE -DRPI4=TRUE # use build-linux32.sh for 32-bits
for Serious Sam Classic The First Encounter, or for Serious Sam Classic The Second Encounter:
cd SeriousSamClassic-VK/SamTSE/Sources
./build-linux64.sh -DRPI4=TRUE # use build-linux32.sh for 32-bits
Type this in your terminal:
git clone https://github.com/tx00100xt/SeriousSamClassic-VK.git SeriousSamClassic-VK
If you have access to a copy of the game (either by CD or through Steam), you can copy the *.gro files from the game directory to the repository. (SeriousSamClassic-VK/SamTFE is the directory of the game Serious Sam Classic The First Encounter, SeriousSamClassic-VK/SamTSE is the directory of the game Serious Sam Classic The Second Encounter)
Type this in your terminal:
cd SeriousSamClassic-VK/SamTFE/Sources
cp -vfr Entities/PlayerWeapons_old.es Entities/PlayerWeapons.es
mkdir cmake-build
cd cmake-build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DTFE=TRUE ..
make -j4
cp -v SeriousSam DedicatedServer MakeFONT ecc ../../Bin
cp -v Debug/*.so ../../Bin
Type this in your terminal:
cd SeriousSamClassic-VK/SamTSE/Sources
cp -vfr EntitiesMP/PlayerWeapons_old.es EntitiesMP/PlayerWeapons.es
mkdir cmake-build
cd cmake-build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
make -j4
cp -v SeriousSam DedicatedServer MakeFONT ecc ../../Bin
cp -v Debug/*.so ../../Bin
Note that the CD version of SS:TSE used MP3 for music. You will need to build / get libamp11lib.so
and copy it inside Bin
with the other libs to have music. Steam version uses ogg and doesn't need this library.
This version of the engine comes with a set of resources (\SE1_10b.GRO
) that allow you to freely use the engine without any additional resources required. You can buy the original games on Steam, as a part of a bundle with Serious Sam Revolution ( http://store.steampowered.com/app/227780 )
- Locate the game directory for "Serious Sam Classic The First Encounter" (steam)
- Build game from source code or Download latest release and copy the latest files from the game directory to SamTFE/Bin
- Copy all *.gro files, Help folder and Levels folder from the game directory to SamTFE directory.
At the current time the files are:
- Help (folder)
- Levels (folder)
- 1_00_ExtraTools.gro
- 1_00_music.gro
- 1_00c.gro
- 1_00c_Logo.gro
- 1_00c_scripts.gro
- 1_04_patch.gro
- Start the game
- ./run_game.sh or ./run_game_hud.sh (for start game with MangoHUD)
- Locate the game directory for "Serious Sam Classic The Second Encounter" (steam)
- Build game from source code or Download latest release and copy the latest files from the game directory to SamTSE/Bin
- Copy all *.gro files and Help folder from the game directory to SamTSE directory.
At the current time the files are:
- Help (folder)
- SE1_00.gro
- SE1_00_Extra.gro
- SE1_00_ExtraTools.gro
- SE1_00_Levels.gro
- SE1_00_Logo.gro
- SE1_00_Music.gro
- 1_04_patch.gro
- 1_07_tools.gro
- Start the game
- ./run_game.sh or ./run_game_hud.sh (for start game with MangoHUD)
- Edit the build script by adding a parameter to the cmake command:
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr
- Build game from source code with script.
- Install the game:
cd cmake-build
sudo make install
- Put game data in (Recommended):
/usr/share/serioussam/ - for TFE
/usr/share/serioussamse/ - for TSE
or
~/.local/share/Serious-Engine/serioussam/ - for TFE
~/.local/share/Serious-Engine/serioussamse/ - for TSE
- Type in console:
serioussam # for run Serious Sam Classic The First Encounter
or
serioussamse # for run Serious Sam Classic The Second Encounter
Note: If the game does not find the data on the recommended paths, then it will independently perform a search.
What is XPLUS? XPLUS is a global modification that changes effects, models, weapons, textures to high definition. XPLUS was created by fans of the game Serious Sam and is distributed for free. Remark: -JD- and VITEK is author this mod for windows.
Type this in your terminal:
cd SeriousSamClassic-VK/SamTFE/Sources
./build-linux64xplus.sh -DTFE=TRUE # use build-linux32xplus.sh for 32-bits
Type this in your terminal:
cd SeriousSamClassic-VK/SamTFE/Sources
cp -vfr Entities/PlayerWeaponsHD.es Entities/PlayerWeapons.es
mkdir cmake-build
cd cmake-build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DTFE=TRUE ..
make -j4
cp -v Debug/*.so ../../Mods/XPLUS/Bin
Download: Xplus TFE from Google Drive or Xplus TFE from pCloud, and unpack to SeriousSamClassic-VK/SamTFE/Mods directory. You can also download the archive using curl or wget:
cd SeriousSamClassic-VK
wget https://archive.org/download/sam-tfe-xplus/SamTFE-XPLUS.tar.xz
tar -xJvpf SamTFE-XPLUS.tar.xz -C SamTFE
or
cd SeriousSamClassic-VK
for var in a b c; do wget https://github.com/tx00100xt/serioussam-mods/raw/main/SamTFE-XPLUS/SamTFE-XPLUS.tar.xz.parta$var; done; cat SamTFE-XPLUS.tar.xz.part* > SamTFE-XPLUS.tar.xz
tar -xJvpf SamTFE-XPLUS.tar.xz -C SamTFE
To start the modification, use the game menu - item Modification.
Type this in your terminal:
cd SeriousSamClassic-VK/SamTSE/Sources
./build-linux64xplus.sh # use build-linux32xplus.sh for 32-bits
Type this in your terminal:
cd SeriousSamClassic-VK/SamTSE/Sources
cp -vfr EntitiesMP/PlayerWeaponsHD.es EntitiesMP/PlayerWeapons.es
mkdir cmake-build
cd cmake-build
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
make -j4
cp -v Debug/*.so ../../Mods/XPLUS/Bin
Download: Xplus TSE from Google Drive or Xplus TSE from pCloud,, and unpack to SeriousSamClassic-VK/SamTSE/Mods directory. You can also download the archive using curl or wget:
cd SeriousSamClassic-VK
wget https://archive.org/download/sam-tse-xplus/SamTSE-XPLUS.tar.xz
tar -xJvpf SamTSE-XPLUS.tar.xz -C SamTSE
or
cd SeriousSamClassic-VK
for var in a b c; do wget https://github.com/tx00100xt/serioussam-mods/raw/main/SamTSE-XPLUS/SamTSE-XPLUS.tar.xz.parta$var; done; cat SamTSE-XPLUS.tar.xz.part* > SamTSE-XPLUS.tar.xz
tar -xJvpf SamTSE-XPLUS.tar.xz -C SamTSE
To start the modification, use the game menu - item Modification.
To build the demo version of the game, official demo files for Windows and official patches for the game from Croteam are used. These files are automatically downloaded and unpacked in demo build scripts.
Type this in your terminal:
git clone https://github.com/tx00100xt/SeriousSamClassic-VK.git SeriousSamClassic-VK
cd SeriousSamClassic-VK
./build-linux64demo.sh # use build-linux32demo.sh for 32-bits
- This project can be compiled starting from Windows 7 and higher.
- Download and Install Vulkan SDK 1.3.204.1 or higher.
- Download and Install Visual Studio 2015 Community Edition or higher.
- Download and Install Windows 10 SDK 10.0.14393.795 or other.
- Open the solution in the Sources folder, select Release x64 or Release Win32 and compile it.
x86
aarch64
e2k
(elbrus)
Linux
FreeBSD
Windows
Raspberry PI OS
CI | Platform | Compiler | Configurations | Platforms | Status |
---|---|---|---|---|---|
GitHub Actions | Windows, Ubuntu, FreeBSD, Alpine, Raspberry PI OS Lite | MSVC, GCC, Clang | Release | x86, x64, armv7l, aarch64, riscv64 |
You can download a the automatically build based on the latest commit.
To do this, go to the Actions tab, select the top workflows, and then Artifacts.
- Serious Engine is licensed under the GNU GPL v2 (see LICENSE file).
- amp11lib is licensed under the GNU GPL v2 (see amp11lib/COPYING file).
Some of the code included with the engine sources is not licensed under the GNU GPL v2:
- zlib (located in
Sources/Engine/zlib
) by Jean-loup Gailly and Mark Adler - LightWave SDK (located in
Sources/LWSkaExporter/SDK
) by NewTek Inc. - libogg/libvorbis (located in
Sources/libogg
andSources/libvorbis
) by Xiph.Org Foundation