Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nillerusr ab5c1c0b3a game/client: fix messagemode, add acceleration for touch, GameUI: add touch options 3 years ago
app/legion
appframework engine: fix hdr to ldr conversion 3 years ago
bitmap togles: gamma fix, optimize texture convertation 3 years ago
choreoobjects
common fix build with clang, fix saverestore again, android mod launcher support 3 years ago
datacache
datamodel fix build with clang, fix saverestore again, android mod launcher support 3 years ago
dedicated fix linker errors for dedicated when building with vpk support 3 years ago
dedicated_main
devtools
dmserializers
dmxloader
dx9sdk
engine engine: fix hdr to ldr conversion 3 years ago
external
fgdlib
filesystem fix linker errors for dedicated when building with vpk support 3 years ago
game game/client: fix messagemode, add acceleration for touch, GameUI: add touch options 3 years ago
gameui game/client: fix messagemode, add acceleration for touch, GameUI: add touch options 3 years ago
gcsdk
hammer
hammer_launcher
inputsystem inputsystem: fix build with older sdl2 versions 3 years ago
ivp@e83263d03e update ivp submodule 3 years ago
launcher game/client: fix messagemode, add acceleration for touch, GameUI: add touch options 3 years ago
launcher_main
lib/android add csrike source code 3 years ago
linux
linux_sdk
materialsystem engine: fix hdr to ldr conversion 3 years ago
mathlib
mdllib
mdlobjects
movieobjects
networksystem
particles
public engine: fix hdr to ldr conversion 3 years ago
raytrace
replay
scenefilecache
scripts/waifulib add source-sdk-2013 3 years ago
sdklauncher
serverbrowser fix build with clang, fix saverestore again, android mod launcher support 3 years ago
sfmobjects
soundemittersystem
soundsystem
sourcevr
studiorender
thirdparty@c397ca0520
tier0
tier1 tier1: exclude steam deck from KeyValues 3 years ago
tier2
tier3
togl
togles togles: create pseudo buffer for mali gpu's 3 years ago
tools
tracker
unicode
unitlib
unittests
utils
vgui2 GameUI: fix propotional scale 3 years ago
vguimatsurface add more custom screen resolutions, fix build 3 years ago
video
vpc_scripts
vphysics update ivp submodule 3 years ago
vpklib
vstdlib
vtf
.gitignore
.gitmodules
LICENSE
README.md
build.sh
createallprojects
createallprojects.bat
thirdpartylegalnotices.txt
waf
waf.bat
wscript engine: get opus voice codec 3 years ago

README.md

source-engine

Goals

  • fixing bugs
  • NEON support
  • DXVK support
  • remove unnecessary dependencies
  • Elbrus port
  • Arm(android) port
  • improve performance
  • replace current buildsystem with waf
  • rewrite achivement system( to work without steam )
  • 64-bit support

How to Build?

Clone repo and change directory:

git clone https://github.com/nillerusr/source-engine --recursive --depth 1
cd source-engine

On Linux:

dependencies: fontconfig, freetype2, OpenAL, SDL2, libbz2, libcurl, libjpeg, libpng, zlib

./waf configure -T debug
./waf build

On Linux for Android(Note: only Android NDK r10e is supported):

export ANDROID_NDK=/path/to/ndk
./waf configure -T debug --android=armeabi-v7a,4.9,21
./waf build

On Windows/MacOS: TODO(WAF is not configured for Windows/MacOS. Use VPC as temporary solution)