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.
 
 
 
 
 
 
hymei 4e4039d756 arm64 : fix intptr_t size 2 years ago
app/legion
appframework engine: fix hdr to ldr conversion 3 years ago
bitmap arm64 : fix intptr_t size 2 years ago
choreoobjects
common arm64 : fix intptr_t size 2 years ago
datacache arm64 : fix intptr_t size 2 years ago
datamodel arm64 : fix intptr_t size 2 years ago
dedicated fix linker errors for dedicated when building with vpk support 3 years ago
dedicated_main
devtools
dmserializers
dmxloader
dx9sdk
engine arm64 : fix intptr_t size 2 years ago
external
fgdlib
filesystem arm64 : fix intptr_t size 2 years ago
game arm64 : fix intptr_t size 2 years ago
gameui arm64 : fix intptr_t size 2 years ago
gcsdk
hammer arm64 : fix intptr_t size 2 years ago
hammer_launcher
inputsystem inputsystem: fix build with older sdl2 versions 3 years ago
ivp@65ec2e7f5b update ivp submodule 2 years ago
launcher game: small fixes 2 years ago
launcher_main game: small fixes 2 years ago
lib/android add csrike source code 3 years ago
linux
linux_sdk
materialsystem arm64 : fix intptr_t size 2 years ago
mathlib fix address sanitizer issues 2 years ago
mdllib
mdlobjects
movieobjects
networksystem
particles arm64 : fix intptr_t size 2 years ago
public arm64 : fix intptr_t size 2 years ago
raytrace
replay
scenefilecache Initial android support (#17) 3 years ago
scripts/waifulib materialsystem: fix(hack) flashlight. normalizedcubemap broken? 2 years ago
sdklauncher
serverbrowser misaligment fixes 2 years ago
sfmobjects
soundemittersystem Initial android support (#17) 3 years ago
soundsystem arm64 : fix intptr_t size 2 years ago
sourcevr
studiorender arm64 : fix intptr_t size 2 years ago
thirdparty@c397ca0520 Initial android support (#17) 3 years ago
tier0 arm64 : fix intptr_t size 2 years ago
tier1 arm64 : fix intptr_t size 2 years ago
tier2 arm64 : fix intptr_t size 2 years ago
tier3 arm64 : fix intptr_t size 2 years ago
togl arm64 : fix intptr_t size 2 years ago
togles game: small fixes 2 years ago
tools
tracker
unicode
unitlib
unittests
utils arm64 : fix intptr_t size 2 years ago
vgui2 arm64 : fix intptr_t size 2 years ago
vguimatsurface add more custom screen resolutions, fix build 3 years ago
video
vpc_scripts
vphysics arm64 : fix intptr_t size 2 years ago
vpklib fix address sanitizer issues #2 2 years ago
vstdlib arm64 : fix intptr_t size 2 years ago
vtf
.gitignore Initial android support (#17) 3 years ago
.gitmodules
LICENSE
README.md Update README.md, update ivp submodule 3 years ago
build.sh
createallprojects
createallprojects.bat
thirdpartylegalnotices.txt
waf
waf.bat
wscript wscript: add --disable-warns option 2 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)