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 f7cdca7ad2 saverestore fixes 3 years ago
app/legion
appframework add vgui touch panel, touch logic 3 years ago
bitmap
choreoobjects
common Initial android support (#17) 3 years ago
datacache Initial android support (#17) 3 years ago
datamodel Initial android support (#17) 3 years ago
dedicated Fix clang compile 3 years ago
dedicated_main
devtools
dmserializers
dmxloader
dx9sdk
engine saverestore fixes 3 years ago
external
fgdlib
filesystem Initial android support (#17) 3 years ago
game saverestore fixes 3 years ago
gameui Initial android support (#17) 3 years ago
gcsdk
hammer
hammer_launcher
inputsystem physics: fix a lot of problems 3 years ago
ivp@64e06cde5f Fix clang compile 3 years ago
launcher add vgui touch panel, touch logic 3 years ago
launcher_main Initial android support (#17) 3 years ago
lib/android Initial android support (#17) 3 years ago
linux
linux_sdk
materialsystem materialsystem: fix undefined behaviour(bruh moment) 3 years ago
mathlib
mdllib
mdlobjects
movieobjects
networksystem
particles
public saverestore fixes 3 years ago
raytrace
replay
scenefilecache Initial android support (#17) 3 years ago
scripts/waifulib Initial android support (#17) 3 years ago
sdklauncher
serverbrowser fix previous commit 3 years ago
sfmobjects
soundemittersystem Initial android support (#17) 3 years ago
soundsystem
sourcevr
studiorender physics: fix a lot of problems 3 years ago
thirdparty@c397ca0520 Initial android support (#17) 3 years ago
tier0 Initial android support (#17) 3 years ago
tier1 Initial android support (#17) 3 years ago
tier2
tier3
togl Initial android support (#17) 3 years ago
tools
tracker
unicode
unitlib
unittests
utils
vgui2 physics: fix a lot of problems 3 years ago
vguimatsurface inputsystem: touch event handling 3 years ago
video
vpc_scripts
vphysics physics: fix a lot of problems 3 years ago
vpklib CUtlBuffer, Color: misalign fixes 3 years ago
vstdlib Initial android support (#17) 3 years ago
vtf
.gitignore Initial android support (#17) 3 years ago
.gitmodules
LICENSE
README.md Initial android support (#17) 3 years ago
build.sh
createallprojects
createallprojects.bat
thirdpartylegalnotices.txt
waf
waf.bat
wscript Initial android support (#17) 3 years ago

README.md

source-engine

The main purpose of this repository is to port the engine for other platforms.

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 )

How to Build?

  1. Clone repo ( git clone https://github.com/nillerusr/source-engine)
  2. Run git submodule init && git submodule update

On Linux:

./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: TODO(WAF is not configured for Windows. Use VPC as temporary solution)