From 570f6419df01272e0554eaa482966f17556c111d Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 8 Sep 2022 01:02:22 +0200 Subject: [PATCH] Add 'reload_playlists' concommand. Allows reloading the playlists file from the console or the dedicated server. --- r5dev/tier1/cmd.cpp | 5 ++++- r5dev/vstdlib/callback.cpp | 31 +++++++++++++++++++++---------- r5dev/vstdlib/callback.h | 3 ++- 3 files changed, 27 insertions(+), 12 deletions(-) diff --git a/r5dev/tier1/cmd.cpp b/r5dev/tier1/cmd.cpp index 03dbe531..ab8dba25 100644 --- a/r5dev/tier1/cmd.cpp +++ b/r5dev/tier1/cmd.cpp @@ -329,6 +329,9 @@ void ConCommand::Init(void) ConCommand::Create("sphere", "Draw a debug sphere.", FCVAR_DEVELOPMENTONLY | FCVAR_CHEAT, Sphere_f, nullptr); ConCommand::Create("capsule", "Draw a debug capsule.", FCVAR_DEVELOPMENTONLY | FCVAR_CHEAT, Capsule_f, nullptr); #endif //!DEDICATED +#ifndef CLIENT_DLL + ConCommand::Create("reload_playlists", "Reloads the playlists file.", FCVAR_RELEASE, Host_ReloadPlaylists_f, nullptr); +#endif // !CLIENT_DLL //------------------------------------------------------------------------- // SERVER DLL | #ifndef CLIENT_DLL @@ -338,7 +341,7 @@ void ConCommand::Init(void) ConCommand::Create("sv_ban", "Bans a client from the server by user name. | Usage: sv_ban .", FCVAR_GAMEDLL | FCVAR_RELEASE, Host_Ban_f, nullptr); ConCommand::Create("sv_banid", "Bans a client from the server by handle, nucleus id or ip address | Usage: sv_banid \"\"/\"/\".", FCVAR_GAMEDLL | FCVAR_RELEASE, Host_BanID_f, nullptr); ConCommand::Create("sv_unban", "Unbans a client from the server by nucleus id or ip address | Usage: sv_unban \"\"/\"\".", FCVAR_RELEASE, Host_Unban_f, nullptr); - ConCommand::Create("sv_reloadbanlist", "Reloads the ban list from the disk.", FCVAR_RELEASE, Host_ReloadBanList_f, nullptr); + ConCommand::Create("sv_reloadbanlist", "Reloads the banned list.", FCVAR_RELEASE, Host_ReloadBanList_f, nullptr); #endif // !CLIENT_DLL #ifndef DEDICATED //------------------------------------------------------------------------- diff --git a/r5dev/vstdlib/callback.cpp b/r5dev/vstdlib/callback.cpp index e263a85e..6cb7bf9e 100644 --- a/r5dev/vstdlib/callback.cpp +++ b/r5dev/vstdlib/callback.cpp @@ -339,16 +339,6 @@ void Host_Unban_f(const CCommand& args) } } -/* -===================== -Host_ReloadBanList_f -===================== -*/ -void Host_ReloadBanList_f(const CCommand& args) -{ - g_pBanSystem->Load(); // Reload banlist. -} - /* ===================== Host_Changelevel_f @@ -368,6 +358,27 @@ void Host_Changelevel_f(const CCommand& args) } } +/* +===================== +Host_ReloadBanList_f +===================== +*/ +void Host_ReloadBanList_f(const CCommand& args) +{ + g_pBanSystem->Load(); // Reload banlist. +} + +/* +===================== +Host_ReloadPlaylists_f +===================== +*/ +void Host_ReloadPlaylists_f(const CCommand& args) +{ + _DownloadPlaylists_f(); + KeyValues::InitPlaylists(); // Re-Init playlist. +} + #endif // !CLIENT_DLL /* ===================== diff --git a/r5dev/vstdlib/callback.h b/r5dev/vstdlib/callback.h index 9a534970..19d43611 100644 --- a/r5dev/vstdlib/callback.h +++ b/r5dev/vstdlib/callback.h @@ -21,8 +21,9 @@ void Host_KickID_f(const CCommand& args); void Host_Ban_f(const CCommand& args); void Host_BanID_f(const CCommand& args); void Host_Unban_f(const CCommand& args); -void Host_ReloadBanList_f(const CCommand& args); void Host_Changelevel_f(const CCommand& args); +void Host_ReloadBanList_f(const CCommand& args); +void Host_ReloadPlaylists_f(const CCommand& args); #endif // !CLIENT_DLL void Pak_ListPaks_f(const CCommand& args); void Pak_RequestUnload_f(const CCommand& args);