From 602a18977d500ad068fd63fbedcafb630c29ee72 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Fri, 2 Jun 2023 17:03:47 +0100 Subject: Adapt vote reset code into fast campaign resetting This is kind of a breaking change but the other code was obviously never released or relied on by anyone - it will be pushed at the same time as this in fact. It still seems worth having the original committed separately to show the progression of development of the feature, however. Technically the standalone vote cooldown resetting could also be added back if ever desired however there doesn't seem to be that much of a use case for that at the moment. This feature ought to be a lot more convenient now as it allows for resetting back to a set starting point no matter where the player is in a run. It isn't universally useful as All Campaigns Legacy solo runs require switching to a different type of server and Main Campaigns co-op runs require restarting the game after Swamp Fever to work around the god mode bug, however it is still useful in a good few situations. Unfortunately this turned out to be pretty complex to implement, first requiring a bunch of interop with valve's rather wacky KeyValues stuff, and then requiring a bunch of especially difficult reverse engineering of L4D1 v1.0.0.5 because it doesn't use said KeyValues stuff and does something else completely different instead. A side effect of all this work is that the nag removal hack is now part of the KeyValues stuff in kvsys.c, which is kind of a comfier place for it than just kind of dumped in the middle of sst.c. --- compile.bat | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'compile.bat') diff --git a/compile.bat b/compile.bat index 60dba8f..660ebe7 100644 --- a/compile.bat +++ b/compile.bat @@ -72,7 +72,9 @@ setlocal DisableDelayedExpansion :+ gameinfo.c :+ hook.c :+ kv.c -:+ l4d2vote.c +:+ kvsys.c +:+ l4dmm.c +:+ l4dreset.c :+ l4dwarp.c :+ nomute.c :+ nosleep.c @@ -91,7 +93,7 @@ if "%dbg%"=="1" set src=%src% src/udis86.c %HOSTCC% -municode -O2 %warnings% -D_CRT_SECURE_NO_WARNINGS -include stdbool.h -ladvapi32 ^ -o .build/mkentprops.exe src/build/mkentprops.c src/kv.c || exit /b .build\codegen.exe%src% || exit /b -.build\mkgamedata.exe gamedata/engine.kv gamedata/gamelib.kv gamedata/inputsystem.kv || exit /b +.build\mkgamedata.exe gamedata/engine.kv gamedata/gamelib.kv gamedata/inputsystem.kv gamedata/matchmaking.kv || exit /b .build\mkentprops.exe gamedata/entprops.kv || exit /b llvm-rc /FO .build\dll.res src\dll.rc || exit /b %CC% -shared -O0 -w -o .build/tier0.dll src/stubs/tier0.c -- cgit v1.2.3