Added prototype Response System library port from the Alien Swarm SDK

This commit is contained in:
Blixibon
2021-03-08 02:11:13 -06:00
parent 251725c987
commit d081a0cee3
61 changed files with 11056 additions and 63 deletions

View File

@@ -23,6 +23,7 @@ $Group "game"
"tier1"
"vgui_controls"
"vscript"
"responserules"
}
$Group "shaders"
@@ -41,6 +42,7 @@ $Group "everything"
"mathlib"
"motionmapper"
"phonemeextractor"
"responserules"
"qc_eyes"
"raytrace"
"server"
@@ -66,3 +68,17 @@ $Group "dedicated"
"tier1"
}
$Group "maptools"
{
"vbsp"
"vrad_dll"
"vrad_launcher"
"vvis_dll"
"vvis_launcher"
"fgdlib"
"mathlib"
"raytrace"
"tier1"
"vscript"
}

View File

@@ -46,6 +46,11 @@ $Project "server"
"game\server\server_episodic.vpc" [($WIN32||$X360||$POSIX) && $EPISODIC]
}
$Project "responserules"
{
"responserules\runtime\response_rules.vpc" [($WINDOWS||$X360||$POSIX) && $NEW_RESPONSE_SYSTEM]
}
$Project "mathlib"
{
"mathlib\mathlib.vpc" [$WINDOWS||$X360||$POSIX]

View File

@@ -24,6 +24,9 @@ $Conditional MAPBASE_RPC "1"
// Toggles VScript implementation (note: interfaces still exist, just the provided implementation is not present)
$Conditional MAPBASE_VSCRIPT "1"
// Toggles the new Response System library based on the Alien Swarm SDK.
$Conditional NEW_RESPONSE_SYSTEM "1"
//-----------------------------------------------------------------------------
$Configuration "Debug"