Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
Go to file
2021-11-21 01:38:59 +03:00
app/legion
appframework Rewrite ToGL in OpenGLES(Uncomplete) 2021-11-21 01:38:59 +03:00
bitmap waf: fix install 2021-04-06 23:22:52 +03:00
choreoobjects add wscipt files to build vphysics and game 2021-04-06 22:31:58 +03:00
common Initial android support (#17) 2021-09-02 20:33:03 +03:00
datacache Initial android support (#17) 2021-09-02 20:33:03 +03:00
datamodel Initial android support (#17) 2021-09-02 20:33:03 +03:00
dedicated Fix clang compile 2021-04-28 18:24:16 +03:00
dedicated_main build: arm target support 2021-04-25 23:36:09 +03:00
devtools add waf buildsystem 2021-03-31 20:12:00 +03:00
dmserializers
dmxloader waf: fix install 2021-04-06 23:22:52 +03:00
dx9sdk
engine Vpc parser (#31) 2021-11-16 20:50:27 +03:00
external
fgdlib
filesystem Initial android support (#17) 2021-09-02 20:33:03 +03:00
game touch: add new commands 2021-11-16 23:46:29 +03:00
gameui Initial android support (#17) 2021-09-02 20:33:03 +03:00
gcsdk
hammer
hammer_launcher
inputsystem physics: fix a lot of problems 2021-10-23 14:41:59 +03:00
ivp@82849306f7 Update README.md, update ivp submodule 2021-10-23 17:09:16 +03:00
launcher Rewrite ToGL in OpenGLES(Uncomplete) 2021-11-21 01:38:59 +03:00
launcher_main Initial android support (#17) 2021-09-02 20:33:03 +03:00
lib/android Initial android support (#17) 2021-09-02 20:33:03 +03:00
linux
linux_sdk
materialsystem materialsystem: fix undefined behaviour(bruh moment) 2021-10-05 00:53:56 +03:00
mathlib build: arm target support 2021-04-25 23:36:09 +03:00
mdllib
mdlobjects
movieobjects
networksystem
particles add wscipt files to build vphysics and game 2021-04-06 22:31:58 +03:00
public Rewrite ToGL in OpenGLES(Uncomplete) 2021-11-21 01:38:59 +03:00
raytrace
replay
scenefilecache Initial android support (#17) 2021-09-02 20:33:03 +03:00
scripts/waifulib Vpc parser (#31) 2021-11-16 20:50:27 +03:00
sdklauncher
serverbrowser fix previous commit 2021-10-05 00:51:01 +03:00
sfmobjects
soundemittersystem Initial android support (#17) 2021-09-02 20:33:03 +03:00
soundsystem
sourcevr
studiorender physics: fix a lot of problems 2021-10-23 14:41:59 +03:00
thirdparty@c397ca0520 Initial android support (#17) 2021-09-02 20:33:03 +03:00
tier0 touch: add new commands 2021-11-16 23:46:29 +03:00
tier1 Initial android support (#17) 2021-09-02 20:33:03 +03:00
tier2 waf: fix install 2021-04-06 23:22:52 +03:00
tier3 waf: fix install 2021-04-06 23:22:52 +03:00
togl Initial android support (#17) 2021-09-02 20:33:03 +03:00
togles Rewrite ToGL in OpenGLES(Uncomplete) 2021-11-21 01:38:59 +03:00
tools
tracker
unicode
unitlib
unittests
utils add waf buildsystem 2021-03-31 20:12:00 +03:00
vgui2 physics: fix a lot of problems 2021-10-23 14:41:59 +03:00
vguimatsurface inputsystem: touch event handling 2021-10-06 21:09:43 +03:00
video waf: fix install 2021-04-06 23:22:52 +03:00
vpc_scripts
vphysics physics: fix a lot of problems 2021-10-23 14:41:59 +03:00
vpklib CUtlBuffer, Color: misalign fixes 2021-10-25 18:45:21 +03:00
vstdlib Initial android support (#17) 2021-09-02 20:33:03 +03:00
vtf waf: fix install 2021-04-06 23:22:52 +03:00
.gitignore Initial android support (#17) 2021-09-02 20:33:03 +03:00
.gitmodules add ivp submodule 2021-03-31 20:19:16 +03:00
build.sh
createallprojects
createallprojects.bat
LICENSE add LICENSE file 2020-12-16 15:14:33 +03:00
README.md Update README.md, update ivp submodule 2021-10-23 17:09:16 +03:00
thirdpartylegalnotices.txt add LICENSE file 2020-12-16 15:14:33 +03:00
waf waifulib: update 2021-04-28 08:36:34 +03:00
waf.bat fix loading libraries with lib prefix 2021-04-08 22:40:26 +03:00
wscript Rewrite ToGL in OpenGLES(Uncomplete) 2021-11-21 01:38:59 +03:00

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)