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 dc5774a698 add debug logger 3 years ago
app/legion
appframework osx : fix syscalls 3 years ago
bitmap fpersmissive fixes 3 years ago
choreoobjects
common amd64: fix model loading issues 3 years ago
datacache fpersmissive fixes 3 years ago
datamodel arm64 : fix clang compile errors 3 years ago
dedicated
dedicated_main
devtools
dmserializers
dmxloader arm64 : fix clang compile errors 3 years ago
dx9sdk
engine engine: fix config executing 3 years ago
external
fgdlib
filesystem fpersmissive fixes 3 years ago
game game: fix spin_none,spin_zaxis physgun interactions 3 years ago
gameui arm64 : fix vgui2 VPAMEL in messagemap 3 years ago
gcsdk
hammer arm64 : fix intptr_t size 3 years ago
hammer_launcher
inputsystem inputsystem: fix build with older sdl2 versions 3 years ago
ivp@929777ccc8 update ivp submodule 3 years ago
launcher add debug logger 3 years ago
launcher_main game: small fixes 3 years ago
lib/android
linux
linux_sdk
materialsystem amd64: fix mempool, utlbuffer align 3 years ago
mathlib aarch64: fix android build 3 years ago
mdllib
mdlobjects
movieobjects
networksystem
particles arm64 : fix intptr_t size 3 years ago
public add debug logger 3 years ago
raytrace
replay
scenefilecache
scripts/waifulib materialsystem: fix(hack) flashlight. normalizedcubemap broken? 3 years ago
sdklauncher
serverbrowser misaligment fixes 3 years ago
sfmobjects
soundemittersystem
soundsystem arm64 : fix intptr_t size 3 years ago
sourcevr
studiorender amd64: fix multithread, fix vgui, fix physmodels 3 years ago
thirdparty@c397ca0520
tier0 add debug logger 3 years ago
tier1 amd64: fix mempool, utlbuffer align 3 years ago
tier2 arm64 : intp fixes 3 years ago
tier3 arm64 : fix intptr_t size 3 years ago
togl amd64: fix mempool, utlbuffer align 3 years ago
togles aarch64: fix android build 3 years ago
tools
tracker
unicode
unitlib
unittests
utils arm64 : fix intptr_t size 3 years ago
vgui2 fpersmissive fixes 3 years ago
vguimatsurface fpersmissive fixes 3 years ago
video
vpc_scripts
vphysics aarch64: fix android build 3 years ago
vpklib fix address sanitizer issues #2 3 years ago
vstdlib vphysics: fix saverestore 3 years ago
vtf
.gitignore arm64 : fix mempool align 3 years ago
.gitmodules
LICENSE
README.md
build.sh
createallprojects
createallprojects.bat
thirdpartylegalnotices.txt
waf
waf.bat
wscript amd64: fix multithread, fix vgui, fix physmodels 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)