Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
Go to file
2022-03-02 20:47:19 +03:00
app/legion
appframework add more custom screen resolutions, fix build 2022-01-25 00:14:29 +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 fix build with clang, fix saverestore again, android mod launcher support 2022-01-19 18:59:42 +03:00
datacache Initial android support (#17) 2021-09-02 20:33:03 +03:00
datamodel fix build with clang, fix saverestore again, android mod launcher support 2022-01-19 18:59:42 +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 engine: remove PROTOCOL_STEAM requirement 2022-03-02 11:42:47 +03:00
external
fgdlib
filesystem Disable trusted key verification for sv_pure, fix mod_texture.txt loading 2022-02-12 13:45:43 +03:00
game game/server: fix build 2022-03-02 20:47:19 +03:00
gameui Fix external .lmp loading 2022-02-11 11:00:57 +03:00
gcsdk
hammer
hammer_launcher
inputsystem add more custom screen resolutions, fix build 2022-01-25 00:14:29 +03:00
ivp@82849306f7 Update README.md, update ivp submodule 2021-10-23 17:09:16 +03:00
launcher fix build with clang, fix saverestore again, android mod launcher support 2022-01-19 18:59:42 +03:00
launcher_main Initial android support (#17) 2021-09-02 20:33:03 +03:00
lib/android add csrike source code 2022-03-02 11:45:17 +03:00
linux
linux_sdk
materialsystem add more custom screen resolutions, fix build 2022-01-25 00:14:29 +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 add source-sdk-2013 2022-03-01 23:00:42 +03:00
raytrace
replay
scenefilecache Initial android support (#17) 2021-09-02 20:33:03 +03:00
scripts/waifulib add source-sdk-2013 2022-03-01 23:00:42 +03:00
sdklauncher
serverbrowser fix build with clang, fix saverestore again, android mod launcher support 2022-01-19 18:59:42 +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 fix build with clang, fix saverestore again, android mod launcher support 2022-01-19 18:59:42 +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 gameui: add console button to main menu 2022-02-05 22:33:45 +03:00
tools
tracker
unicode
unitlib
unittests
utils add waf buildsystem 2021-03-31 20:12:00 +03:00
vgui2 Merge pull request #43 from nillerusr/ToGLES3 2022-02-05 21:45:29 +03:00
vguimatsurface add more custom screen resolutions, fix build 2022-01-25 00:14:29 +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
README.md Update README.md, update ivp submodule 2021-10-23 17:09:16 +03:00
thirdpartylegalnotices.txt
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 engine: get opus voice codec 2022-02-13 06:15:27 +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)