2022-02-27 07:53:44 -05:00
|
|
|
#include <STDInclude.hpp>
|
2022-07-06 11:48:40 -04:00
|
|
|
#include "GSC/Script.hpp"
|
2017-01-19 16:23:59 -05:00
|
|
|
|
|
|
|
namespace Components
|
|
|
|
{
|
|
|
|
std::vector<std::string> Bots::BotNames;
|
|
|
|
|
2022-01-23 21:00:30 -05:00
|
|
|
struct BotMovementInfo
|
2020-11-14 03:47:35 -05:00
|
|
|
{
|
2022-01-23 14:32:20 -05:00
|
|
|
int buttons; // Actions
|
2022-01-07 16:00:44 -05:00
|
|
|
int8_t forward;
|
|
|
|
int8_t right;
|
|
|
|
uint16_t weapon;
|
2022-02-14 13:14:07 -05:00
|
|
|
bool active;
|
2022-01-23 14:32:20 -05:00
|
|
|
};
|
2020-11-14 03:47:35 -05:00
|
|
|
|
2022-01-23 21:00:30 -05:00
|
|
|
static BotMovementInfo g_botai[18];
|
2020-11-14 03:47:35 -05:00
|
|
|
|
2022-01-23 14:32:20 -05:00
|
|
|
struct BotAction
|
2020-11-14 03:47:35 -05:00
|
|
|
{
|
2022-04-09 10:29:58 -04:00
|
|
|
std::string action;
|
2020-11-14 03:47:35 -05:00
|
|
|
int key;
|
|
|
|
};
|
|
|
|
|
2022-01-23 14:32:20 -05:00
|
|
|
static const BotAction BotActions[] =
|
2020-11-14 03:47:35 -05:00
|
|
|
{
|
2022-02-01 07:41:38 -05:00
|
|
|
{ "gostand", Game::usercmdButtonBits::CMD_BUTTON_UP },
|
|
|
|
{ "gocrouch", Game::usercmdButtonBits::CMD_BUTTON_CROUCH },
|
|
|
|
{ "goprone", Game::usercmdButtonBits::CMD_BUTTON_PRONE },
|
|
|
|
{ "fire", Game::usercmdButtonBits::CMD_BUTTON_ATTACK },
|
|
|
|
{ "melee", Game::usercmdButtonBits::CMD_BUTTON_MELEE },
|
|
|
|
{ "frag", Game::usercmdButtonBits::CMD_BUTTON_FRAG },
|
|
|
|
{ "smoke", Game::usercmdButtonBits::CMD_BUTTON_OFFHAND_SECONDARY },
|
|
|
|
{ "reload", Game::usercmdButtonBits::CMD_BUTTON_RELOAD },
|
|
|
|
{ "sprint", Game::usercmdButtonBits::CMD_BUTTON_SPRINT },
|
|
|
|
{ "leanleft", Game::usercmdButtonBits::CMD_BUTTON_LEAN_LEFT },
|
|
|
|
{ "leanright", Game::usercmdButtonBits::CMD_BUTTON_LEAN_RIGHT },
|
|
|
|
{ "ads", Game::usercmdButtonBits::CMD_BUTTON_ADS },
|
|
|
|
{ "holdbreath", Game::usercmdButtonBits::CMD_BUTTON_BREATH },
|
2022-03-21 14:55:35 -04:00
|
|
|
{ "usereload", Game::usercmdButtonBits::CMD_BUTTON_USE_RELOAD },
|
|
|
|
{ "activate", Game::usercmdButtonBits::CMD_BUTTON_ACTIVATE },
|
2020-11-14 03:47:35 -05:00
|
|
|
};
|
|
|
|
|
2022-01-28 06:28:52 -05:00
|
|
|
int Bots::BuildConnectString(char* buffer, const char* connectString, int num, int, int protocol, int checksum, int statVer, int statStuff, int port)
|
2017-01-19 16:23:59 -05:00
|
|
|
{
|
2022-03-21 14:55:35 -04:00
|
|
|
static size_t botId = 0;
|
2022-04-09 10:29:58 -04:00
|
|
|
static bool loadedNames = false; // Load file only once
|
2020-11-14 04:37:58 -05:00
|
|
|
const char* botName;
|
2017-01-19 16:23:59 -05:00
|
|
|
|
2022-04-09 10:29:58 -04:00
|
|
|
if (Bots::BotNames.empty() && !loadedNames)
|
2017-01-19 16:23:59 -05:00
|
|
|
{
|
|
|
|
FileSystem::File bots("bots.txt");
|
2022-04-09 10:29:58 -04:00
|
|
|
loadedNames = true;
|
2017-01-19 16:23:59 -05:00
|
|
|
|
|
|
|
if (bots.exists())
|
|
|
|
{
|
2022-02-26 18:30:58 -05:00
|
|
|
auto names = Utils::String::Split(bots.getBuffer(), '\n');
|
2017-01-19 16:23:59 -05:00
|
|
|
|
2022-01-07 16:00:44 -05:00
|
|
|
for (auto& name : names)
|
2017-01-19 16:23:59 -05:00
|
|
|
{
|
|
|
|
Utils::String::Replace(name, "\r", "");
|
|
|
|
name = Utils::String::Trim(name);
|
|
|
|
|
|
|
|
if (!name.empty())
|
|
|
|
{
|
|
|
|
Bots::BotNames.push_back(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-14 04:37:58 -05:00
|
|
|
}
|
2017-01-19 16:23:59 -05:00
|
|
|
|
2020-11-14 04:37:58 -05:00
|
|
|
if (!Bots::BotNames.empty())
|
|
|
|
{
|
|
|
|
botId %= Bots::BotNames.size();
|
|
|
|
botName = Bots::BotNames[botId++].data();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
botName = Utils::String::VA("bot%d", ++botId);
|
2017-01-19 16:23:59 -05:00
|
|
|
}
|
|
|
|
|
2022-01-28 06:28:52 -05:00
|
|
|
return _snprintf_s(buffer, 0x400, _TRUNCATE, connectString, num, botName, protocol, checksum, statVer, statStuff, port);
|
2017-01-19 16:23:59 -05:00
|
|
|
}
|
|
|
|
|
2022-01-23 14:32:20 -05:00
|
|
|
void Bots::Spawn(unsigned int count)
|
2017-04-23 07:31:48 -04:00
|
|
|
{
|
2022-06-04 08:59:14 -04:00
|
|
|
for (std::size_t i = 0; i < count; ++i)
|
2017-04-23 07:31:48 -04:00
|
|
|
{
|
2022-05-05 10:03:14 -04:00
|
|
|
Scheduler::Once([]
|
2017-04-23 07:31:48 -04:00
|
|
|
{
|
2022-01-07 16:00:44 -05:00
|
|
|
auto* ent = Game::SV_AddTestClient();
|
|
|
|
if (ent == nullptr)
|
|
|
|
return;
|
|
|
|
|
2022-06-04 08:59:14 -04:00
|
|
|
Scheduler::Once([ent]
|
2017-04-23 07:31:48 -04:00
|
|
|
{
|
2022-01-07 16:00:44 -05:00
|
|
|
Game::Scr_AddString("autoassign");
|
|
|
|
Game::Scr_AddString("team_marinesopfor");
|
|
|
|
Game::Scr_Notify(ent, Game::SL_GetString("menuresponse", 0), 2);
|
|
|
|
|
2022-06-04 08:59:14 -04:00
|
|
|
Scheduler::Once([ent]
|
2017-04-24 15:14:08 -04:00
|
|
|
{
|
2022-01-07 16:00:44 -05:00
|
|
|
Game::Scr_AddString(Utils::String::VA("class%u", Utils::Cryptography::Rand::GenerateInt() % 5u));
|
|
|
|
Game::Scr_AddString("changeclass");
|
|
|
|
Game::Scr_Notify(ent, Game::SL_GetString("menuresponse", 0), 2);
|
2022-05-05 10:03:14 -04:00
|
|
|
}, Scheduler::Pipeline::SERVER, 1s);
|
|
|
|
|
|
|
|
}, Scheduler::Pipeline::SERVER, 1s);
|
|
|
|
|
|
|
|
}, Scheduler::Pipeline::SERVER, 500ms * (i + 1));
|
2017-04-23 07:31:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-24 10:30:06 -05:00
|
|
|
void Bots::GScr_isTestClient(const Game::scr_entref_t entref)
|
2022-05-05 18:48:33 -04:00
|
|
|
{
|
2022-11-24 10:30:06 -05:00
|
|
|
const auto* ent = Game::GetEntity(entref);
|
|
|
|
if (!ent->client)
|
|
|
|
{
|
|
|
|
Game::Scr_Error("isTestClient: entity must be a player entity");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-06 19:49:29 -04:00
|
|
|
Game::Scr_AddBool(Game::SV_IsTestClient(ent->s.number) != 0);
|
2022-05-05 18:48:33 -04:00
|
|
|
}
|
|
|
|
|
2020-11-14 03:58:05 -05:00
|
|
|
void Bots::AddMethods()
|
|
|
|
{
|
2022-07-23 17:22:58 -04:00
|
|
|
Script::AddMethod("IsBot", Bots::GScr_isTestClient); // Usage: self IsBot();
|
|
|
|
Script::AddMethod("IsTestClient", Bots::GScr_isTestClient); // Usage: self IsTestClient();
|
2022-05-05 18:48:33 -04:00
|
|
|
|
2022-07-23 17:22:58 -04:00
|
|
|
Script::AddMethod("BotStop", [](Game::scr_entref_t entref) // Usage: <bot> BotStop();
|
2020-11-14 04:20:56 -05:00
|
|
|
{
|
2022-02-25 07:17:57 -05:00
|
|
|
const auto* ent = Game::GetPlayerEntity(entref);
|
2020-11-14 04:20:56 -05:00
|
|
|
|
2022-05-06 19:49:29 -04:00
|
|
|
if (Game::SV_IsTestClient(ent->s.number) == 0)
|
2020-11-14 04:20:56 -05:00
|
|
|
{
|
2022-01-07 16:00:44 -05:00
|
|
|
Game::Scr_Error("^1BotStop: Can only call on a bot!\n");
|
2020-11-14 04:20:56 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-09-08 11:11:54 -04:00
|
|
|
ZeroMemory(&g_botai[entref.entnum], sizeof(BotMovementInfo));
|
2022-01-17 19:21:25 -05:00
|
|
|
g_botai[entref.entnum].weapon = 1;
|
2022-04-14 12:04:34 -04:00
|
|
|
g_botai[entref.entnum].active = true;
|
2020-11-14 04:20:56 -05:00
|
|
|
});
|
|
|
|
|
2022-07-23 17:22:58 -04:00
|
|
|
Script::AddMethod("BotWeapon", [](Game::scr_entref_t entref) // Usage: <bot> BotWeapon(<str>);
|
2020-11-14 04:20:56 -05:00
|
|
|
{
|
2022-02-25 07:17:57 -05:00
|
|
|
const auto* ent = Game::GetPlayerEntity(entref);
|
2020-11-14 04:20:56 -05:00
|
|
|
|
2022-05-06 19:49:29 -04:00
|
|
|
if (Game::SV_IsTestClient(ent->s.number) == 0)
|
2020-11-14 04:20:56 -05:00
|
|
|
{
|
2022-01-07 16:00:44 -05:00
|
|
|
Game::Scr_Error("^1BotWeapon: Can only call on a bot!\n");
|
2020-11-14 04:20:56 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-06 19:49:29 -04:00
|
|
|
const auto* weapon = Game::Scr_GetString(0);
|
|
|
|
|
2022-01-23 21:08:28 -05:00
|
|
|
if (weapon == nullptr || weapon[0] == '\0')
|
2020-11-14 04:20:56 -05:00
|
|
|
{
|
2022-01-17 19:21:25 -05:00
|
|
|
g_botai[entref.entnum].weapon = 1;
|
2020-11-14 04:20:56 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-01-07 16:00:44 -05:00
|
|
|
const auto weapId = Game::G_GetWeaponIndexForName(weapon);
|
2022-01-23 21:00:30 -05:00
|
|
|
g_botai[entref.entnum].weapon = static_cast<uint16_t>(weapId);
|
2022-02-14 13:14:07 -05:00
|
|
|
g_botai[entref.entnum].active = true;
|
2020-11-14 04:20:56 -05:00
|
|
|
});
|
|
|
|
|
2022-07-23 17:22:58 -04:00
|
|
|
Script::AddMethod("BotAction", [](Game::scr_entref_t entref) // Usage: <bot> BotAction(<str action>);
|
2020-11-14 04:20:56 -05:00
|
|
|
{
|
2022-05-06 19:49:29 -04:00
|
|
|
const auto* ent = Game::GetPlayerEntity(entref);
|
2020-11-14 04:20:56 -05:00
|
|
|
|
2022-05-06 19:49:29 -04:00
|
|
|
if (Game::SV_IsTestClient(ent->s.number) == 0)
|
2022-01-23 14:32:20 -05:00
|
|
|
{
|
2022-05-06 19:49:29 -04:00
|
|
|
Game::Scr_Error("^1BotAction: Can only call on a bot!\n");
|
2022-01-23 14:32:20 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-06 19:49:29 -04:00
|
|
|
const auto* action = Game::Scr_GetString(0);
|
2020-11-14 04:20:56 -05:00
|
|
|
|
2022-05-06 19:49:29 -04:00
|
|
|
if (action == nullptr)
|
2020-11-14 04:20:56 -05:00
|
|
|
{
|
2022-05-06 19:49:29 -04:00
|
|
|
Game::Scr_ParamError(0, "^1BotAction: Illegal parameter!\n");
|
2020-11-14 04:20:56 -05:00
|
|
|
return;
|
|
|
|
}
|
2022-01-07 16:00:44 -05:00
|
|
|
|
2020-11-14 04:20:56 -05:00
|
|
|
if (action[0] != '+' && action[0] != '-')
|
|
|
|
{
|
2022-01-16 08:45:18 -05:00
|
|
|
Game::Scr_ParamError(0, "^1BotAction: Sign for action must be '+' or '-'.\n");
|
2020-11-14 04:20:56 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-07-06 11:48:40 -04:00
|
|
|
for (std::size_t i = 0; i < std::extent_v<decltype(BotActions)>; ++i)
|
2020-11-14 04:20:56 -05:00
|
|
|
{
|
2022-04-09 10:29:58 -04:00
|
|
|
if (Utils::String::ToLower(&action[1]) != BotActions[i].action)
|
2020-11-14 04:20:56 -05:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (action[0] == '+')
|
2022-01-17 19:21:25 -05:00
|
|
|
g_botai[entref.entnum].buttons |= BotActions[i].key;
|
2020-11-14 04:20:56 -05:00
|
|
|
else
|
2022-04-09 10:29:58 -04:00
|
|
|
g_botai[entref.entnum].buttons &= ~BotActions[i].key;
|
2020-11-14 04:20:56 -05:00
|
|
|
|
2022-02-14 13:14:07 -05:00
|
|
|
g_botai[entref.entnum].active = true;
|
2020-11-14 04:20:56 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-01-16 08:45:18 -05:00
|
|
|
Game::Scr_ParamError(0, "^1BotAction: Unknown action.\n");
|
2020-11-14 04:20:56 -05:00
|
|
|
});
|
|
|
|
|
2022-07-23 17:22:58 -04:00
|
|
|
Script::AddMethod("BotMovement", [](Game::scr_entref_t entref) // Usage: <bot> BotMovement(<int>, <int>);
|
2020-11-14 04:20:56 -05:00
|
|
|
{
|
2022-02-25 07:17:57 -05:00
|
|
|
const auto* ent = Game::GetPlayerEntity(entref);
|
2020-11-14 04:20:56 -05:00
|
|
|
|
2022-05-06 19:49:29 -04:00
|
|
|
if (Game::SV_IsTestClient(ent->s.number) == 0)
|
2020-11-14 04:20:56 -05:00
|
|
|
{
|
2022-01-07 16:00:44 -05:00
|
|
|
Game::Scr_Error("^1BotMovement: Can only call on a bot!\n");
|
2020-11-14 04:20:56 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-06 19:49:29 -04:00
|
|
|
const auto forwardInt = std::clamp<int>(Game::Scr_GetInt(0), std::numeric_limits<char>::min(), std::numeric_limits<char>::max());
|
|
|
|
const auto rightInt = std::clamp<int>(Game::Scr_GetInt(1), std::numeric_limits<char>::min(), std::numeric_limits<char>::max());
|
2020-11-14 03:58:05 -05:00
|
|
|
|
2022-01-17 19:21:25 -05:00
|
|
|
g_botai[entref.entnum].forward = static_cast<int8_t>(forwardInt);
|
|
|
|
g_botai[entref.entnum].right = static_cast<int8_t>(rightInt);
|
2022-02-14 13:14:07 -05:00
|
|
|
g_botai[entref.entnum].active = true;
|
2020-11-14 04:20:56 -05:00
|
|
|
});
|
2020-11-14 03:58:05 -05:00
|
|
|
}
|
|
|
|
|
2022-01-24 07:15:33 -05:00
|
|
|
void Bots::BotAiAction(Game::client_t* cl)
|
2017-01-19 16:23:59 -05:00
|
|
|
{
|
2022-01-24 07:15:33 -05:00
|
|
|
if (cl->gentity == nullptr)
|
|
|
|
return;
|
2020-11-14 03:44:59 -05:00
|
|
|
|
2022-01-24 07:15:33 -05:00
|
|
|
const auto entnum = cl->gentity->s.number;
|
2022-01-23 21:00:30 -05:00
|
|
|
|
2022-02-14 13:14:07 -05:00
|
|
|
// Keep test client functionality
|
|
|
|
if (!g_botai[entnum].active)
|
2022-03-21 14:55:35 -04:00
|
|
|
{
|
|
|
|
Game::SV_BotUserMove(cl);
|
2022-02-14 13:14:07 -05:00
|
|
|
return;
|
2022-03-21 14:55:35 -04:00
|
|
|
}
|
2022-02-14 13:14:07 -05:00
|
|
|
|
2022-03-21 14:55:35 -04:00
|
|
|
Game::usercmd_s userCmd = {0};
|
2022-02-14 13:14:07 -05:00
|
|
|
|
2022-03-21 14:55:35 -04:00
|
|
|
userCmd.serverTime = *Game::svs_time;
|
2022-01-23 21:00:30 -05:00
|
|
|
|
2022-03-21 14:55:35 -04:00
|
|
|
userCmd.buttons = g_botai[entnum].buttons;
|
|
|
|
userCmd.forwardmove = g_botai[entnum].forward;
|
|
|
|
userCmd.rightmove = g_botai[entnum].right;
|
|
|
|
userCmd.weapon = g_botai[entnum].weapon;
|
2022-01-23 21:00:30 -05:00
|
|
|
|
2022-03-21 14:55:35 -04:00
|
|
|
Game::SV_ClientThink(cl, &userCmd);
|
2022-01-23 21:00:30 -05:00
|
|
|
}
|
2020-11-14 04:05:00 -05:00
|
|
|
|
2022-01-24 07:15:33 -05:00
|
|
|
constexpr auto SV_BotUserMove = 0x626E50;
|
2022-03-15 18:49:58 -04:00
|
|
|
__declspec(naked) void Bots::SV_BotUserMove_Hk()
|
2022-01-23 21:00:30 -05:00
|
|
|
{
|
|
|
|
__asm
|
2020-11-14 04:05:00 -05:00
|
|
|
{
|
2022-01-24 07:03:35 -05:00
|
|
|
pushad
|
2020-11-14 04:05:00 -05:00
|
|
|
|
2022-01-24 07:15:33 -05:00
|
|
|
push edi
|
2022-01-23 22:20:57 -05:00
|
|
|
call Bots::BotAiAction
|
2022-01-24 07:15:33 -05:00
|
|
|
add esp, 4
|
2022-01-24 07:03:35 -05:00
|
|
|
|
2022-01-23 21:00:30 -05:00
|
|
|
popad
|
|
|
|
ret
|
|
|
|
}
|
|
|
|
}
|
2020-11-14 04:05:00 -05:00
|
|
|
|
2022-03-21 14:55:35 -04:00
|
|
|
void Bots::G_SelectWeaponIndex(int clientNum, int iWeaponIndex)
|
|
|
|
{
|
|
|
|
if (g_botai[clientNum].active)
|
|
|
|
{
|
|
|
|
g_botai[clientNum].weapon = static_cast<uint16_t>(iWeaponIndex);
|
2022-01-23 21:00:30 -05:00
|
|
|
}
|
|
|
|
}
|
2020-11-14 04:05:00 -05:00
|
|
|
|
2022-03-21 14:55:35 -04:00
|
|
|
__declspec(naked) void Bots::G_SelectWeaponIndex_Hk()
|
2022-01-23 21:00:30 -05:00
|
|
|
{
|
2022-03-21 14:55:35 -04:00
|
|
|
__asm
|
|
|
|
{
|
|
|
|
pushad
|
|
|
|
|
|
|
|
push [esp + 0x20 + 0x8]
|
|
|
|
push [esp + 0x20 + 0x8]
|
|
|
|
call Bots::G_SelectWeaponIndex
|
|
|
|
add esp, 0x8
|
|
|
|
|
|
|
|
popad
|
|
|
|
|
|
|
|
// Code skipped by hook
|
|
|
|
mov eax, [esp + 0x8]
|
|
|
|
push eax
|
|
|
|
|
|
|
|
push 0x441B85
|
|
|
|
retn
|
|
|
|
}
|
|
|
|
}
|
2022-02-27 12:36:13 -05:00
|
|
|
|
2022-01-23 21:00:30 -05:00
|
|
|
Bots::Bots()
|
|
|
|
{
|
2022-08-20 06:30:34 -04:00
|
|
|
AssertOffset(Game::client_t, bIsTestClient, 0x41AF0);
|
|
|
|
AssertOffset(Game::client_t, ping, 0x212C8);
|
2022-05-05 18:48:33 -04:00
|
|
|
|
2022-01-23 21:00:30 -05:00
|
|
|
// Replace connect string
|
|
|
|
Utils::Hook::Set<const char*>(0x48ADA6, "connect bot%d \"\\cg_predictItems\\1\\cl_anonymous\\0\\color\\4\\head\\default\\model\\multi\\snaps\\20\\rate\\5000\\name\\%s\\protocol\\%d\\checksum\\%d\\statver\\%d %u\\qport\\%d\"");
|
2020-11-14 04:05:00 -05:00
|
|
|
|
2022-01-23 21:00:30 -05:00
|
|
|
// Intercept sprintf for the connect string
|
|
|
|
Utils::Hook(0x48ADAB, Bots::BuildConnectString, HOOK_CALL).install()->quick();
|
2020-11-14 04:05:00 -05:00
|
|
|
|
2022-03-15 18:49:58 -04:00
|
|
|
Utils::Hook(0x627021, Bots::SV_BotUserMove_Hk, HOOK_CALL).install()->quick();
|
|
|
|
Utils::Hook(0x627241, Bots::SV_BotUserMove_Hk, HOOK_CALL).install()->quick();
|
2022-01-23 21:00:30 -05:00
|
|
|
|
2022-03-21 14:55:35 -04:00
|
|
|
Utils::Hook(0x441B80, Bots::G_SelectWeaponIndex_Hk, HOOK_JUMP).install()->quick();
|
2022-01-23 21:00:30 -05:00
|
|
|
|
2022-04-14 12:04:34 -04:00
|
|
|
// Reset BotMovementInfo.active when client is dropped
|
2022-06-13 14:16:57 -04:00
|
|
|
Events::OnClientDisconnect([](const int clientNum)
|
|
|
|
{
|
|
|
|
g_botai[clientNum].active = false;
|
|
|
|
});
|
2022-04-14 12:04:34 -04:00
|
|
|
|
2022-01-23 21:00:30 -05:00
|
|
|
// Zero the bot command array
|
2022-07-06 11:48:40 -04:00
|
|
|
for (std::size_t i = 0; i < std::extent_v<decltype(g_botai)>; ++i)
|
2022-01-23 21:00:30 -05:00
|
|
|
{
|
2022-09-08 11:11:54 -04:00
|
|
|
ZeroMemory(&g_botai[i], sizeof(BotMovementInfo));
|
2022-01-23 21:00:30 -05:00
|
|
|
g_botai[i].weapon = 1; // Prevent the bots from defaulting to the 'none' weapon
|
|
|
|
}
|
2020-11-14 04:05:00 -05:00
|
|
|
|
2017-04-23 07:31:48 -04:00
|
|
|
Command::Add("spawnBot", [](Command::Params* params)
|
|
|
|
{
|
2022-01-23 14:32:20 -05:00
|
|
|
auto count = 1u;
|
2017-04-23 07:31:48 -04:00
|
|
|
|
2022-03-17 14:50:20 -04:00
|
|
|
if (params->size() > 1)
|
2017-04-23 07:31:48 -04:00
|
|
|
{
|
2022-01-07 16:00:44 -05:00
|
|
|
if (params->get(1) == "all"s)
|
2022-01-23 14:32:20 -05:00
|
|
|
{
|
2022-04-12 08:34:51 -04:00
|
|
|
count = *Game::svs_clientCount;
|
2022-01-23 14:32:20 -05:00
|
|
|
}
|
2022-01-07 16:00:44 -05:00
|
|
|
else
|
2022-01-23 14:32:20 -05:00
|
|
|
{
|
2022-04-12 08:34:51 -04:00
|
|
|
char* end;
|
2022-01-23 14:32:20 -05:00
|
|
|
const auto* input = params->get(1);
|
2022-04-12 08:34:51 -04:00
|
|
|
count = std::strtoul(input, &end, 10);
|
2022-01-23 14:32:20 -05:00
|
|
|
|
2022-04-12 08:34:51 -04:00
|
|
|
if (input == end)
|
2022-01-23 14:32:20 -05:00
|
|
|
{
|
2022-06-12 17:07:53 -04:00
|
|
|
Logger::Warning(Game::CON_CHANNEL_DONT_FILTER, "{} is not a valid input\nUsage: {} optional <number of bots> or optional <\"all\">\n",
|
2022-01-23 14:32:20 -05:00
|
|
|
input, params->get(0));
|
2022-04-09 10:29:58 -04:00
|
|
|
return;
|
2022-01-23 14:32:20 -05:00
|
|
|
}
|
|
|
|
}
|
2017-04-23 07:31:48 -04:00
|
|
|
}
|
|
|
|
|
2022-04-12 08:34:51 -04:00
|
|
|
count = std::min(static_cast<unsigned int>(*Game::svs_clientCount), count);
|
2017-04-24 15:14:08 -04:00
|
|
|
|
2017-04-23 07:31:48 -04:00
|
|
|
// Check if ingame and host
|
|
|
|
if (!Game::SV_Loaded())
|
|
|
|
{
|
|
|
|
Toast::Show("cardicon_headshot", "^1Error", "You need to be host to spawn bots!", 3000);
|
|
|
|
Logger::Print("You need to be host to spawn bots!\n");
|
2017-04-24 15:14:08 -04:00
|
|
|
return;
|
2017-04-23 07:31:48 -04:00
|
|
|
}
|
|
|
|
|
2017-04-24 15:14:08 -04:00
|
|
|
Toast::Show("cardicon_headshot", "^2Success", Utils::String::VA("Spawning %d %s...", count, (count == 1 ? "bot" : "bots")), 3000);
|
2022-06-22 04:58:51 -04:00
|
|
|
Logger::Debug("Spawning {} {}", count, (count == 1 ? "bot" : "bots"));
|
2017-04-24 15:14:08 -04:00
|
|
|
|
|
|
|
Bots::Spawn(count);
|
2017-04-23 07:31:48 -04:00
|
|
|
});
|
2020-11-14 03:58:05 -05:00
|
|
|
|
|
|
|
Bots::AddMethods();
|
2022-04-09 10:29:58 -04:00
|
|
|
|
2022-04-09 10:54:54 -04:00
|
|
|
// In case a loaded mod didn't call "BotStop" before the VM shutdown
|
2022-06-13 14:16:57 -04:00
|
|
|
Events::OnVMShutdown([]
|
2022-04-09 10:29:58 -04:00
|
|
|
{
|
2022-07-16 17:24:26 -04:00
|
|
|
for (std::size_t i = 0; i < std::extent_v<decltype(g_botai)>; ++i)
|
2022-04-09 10:29:58 -04:00
|
|
|
{
|
|
|
|
g_botai[i].active = false;
|
|
|
|
}
|
|
|
|
});
|
2017-01-19 16:23:59 -05:00
|
|
|
}
|
|
|
|
}
|