2022-08-13 11:19:45 -04:00
|
|
|
#include <STDInclude.hpp>
|
|
|
|
|
|
|
|
namespace Components
|
|
|
|
{
|
2022-08-15 06:03:10 -04:00
|
|
|
Game::VoicePacket_t Voice::VoicePackets[Game::MAX_CLIENTS][MAX_SERVER_QUEUED_VOICE_PACKETS];
|
|
|
|
int Voice::VoicePacketCount[Game::MAX_CLIENTS];
|
2022-08-13 11:19:45 -04:00
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
bool Voice::MuteList[Game::MAX_CLIENTS];
|
|
|
|
bool Voice::S_PlayerMute[Game::MAX_CLIENTS];
|
2022-08-13 12:42:32 -04:00
|
|
|
|
2022-08-13 11:19:45 -04:00
|
|
|
const Game::dvar_t* Voice::sv_voice;
|
|
|
|
|
|
|
|
bool Voice::SV_VoiceEnabled()
|
|
|
|
{
|
|
|
|
return sv_voice->current.enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Voice::SV_WriteVoiceDataToClient(const int clientNum, Game::msg_t* msg)
|
|
|
|
{
|
2022-08-15 06:03:10 -04:00
|
|
|
assert(VoicePacketCount[clientNum] >= 0);
|
|
|
|
assert(VoicePacketCount[clientNum] <= MAX_SERVER_QUEUED_VOICE_PACKETS);
|
2022-08-13 11:19:45 -04:00
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
Game::MSG_WriteByte(msg, VoicePacketCount[clientNum]);
|
|
|
|
for (auto packet = 0; packet < VoicePacketCount[clientNum]; ++packet)
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
2022-08-15 06:03:10 -04:00
|
|
|
Game::MSG_WriteByte(msg, VoicePackets[clientNum][packet].talker);
|
2022-08-13 11:19:45 -04:00
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
assert(VoicePackets[clientNum][packet].dataSize < (2 << 15));
|
2022-08-13 11:19:45 -04:00
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
Game::MSG_WriteByte(msg, VoicePackets[clientNum][packet].dataSize);
|
|
|
|
Game::MSG_WriteData(msg, VoicePackets[clientNum][packet].data, VoicePackets[clientNum][packet].dataSize);
|
2022-08-13 11:19:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(!msg->overflowed);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Voice::SV_SendClientVoiceData(Game::client_t* client)
|
|
|
|
{
|
|
|
|
const auto msg_buf = std::make_unique<unsigned char[]>(0x10000);
|
|
|
|
Game::msg_t msg{};
|
|
|
|
const auto clientNum = client - Game::svs_clients;
|
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
assert(VoicePacketCount[clientNum] >= 0);
|
2022-08-13 11:19:45 -04:00
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
if (client->state == Game::CS_ACTIVE && VoicePacketCount[clientNum])
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
|
|
|
Game::MSG_Init(&msg, msg_buf.get(), 0x10000);
|
|
|
|
|
|
|
|
assert(msg.cursize == 0);
|
|
|
|
assert(msg.bit == 0);
|
|
|
|
|
|
|
|
Game::MSG_WriteString(&msg, "v");
|
|
|
|
SV_WriteVoiceDataToClient(clientNum, &msg);
|
|
|
|
|
|
|
|
if (msg.overflowed)
|
|
|
|
{
|
|
|
|
Logger::Warning(Game::CON_CHANNEL_SERVER, "WARNING: voice msg overflowed for {}\n", client->name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Game::NET_OutOfBandVoiceData(Game::NS_SERVER, client->netchan.remoteAddress, msg.data, msg.cursize, true);
|
2022-08-15 06:03:10 -04:00
|
|
|
VoicePacketCount[clientNum] = 0;
|
2022-08-13 11:19:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Voice::SV_SendClientMessages_Stub(Game::client_t* client, Game::msg_t* msg, unsigned char* snapshotMsgBuf)
|
|
|
|
{
|
|
|
|
// SV_EndClientSnapshot
|
|
|
|
Utils::Hook::Call<void(Game::client_t*, Game::msg_t*, unsigned char*)>(0x4F5300)(client, msg, snapshotMsgBuf);
|
|
|
|
|
|
|
|
SV_SendClientVoiceData(client);
|
|
|
|
}
|
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
void Voice::SV_ClearMutedList()
|
|
|
|
{
|
|
|
|
std::memset(MuteList, 0, sizeof(MuteList));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Voice::SV_MuteClient(const int muteClientIndex)
|
|
|
|
{
|
|
|
|
AssertIn(muteClientIndex, Game::MAX_CLIENTS);
|
|
|
|
MuteList[muteClientIndex] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Voice::SV_UnmuteClient(const int muteClientIndex)
|
|
|
|
{
|
|
|
|
AssertIn(muteClientIndex, Game::MAX_CLIENTS);
|
|
|
|
MuteList[muteClientIndex] = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Voice::SV_ServerHasClientMuted(const int talker)
|
|
|
|
{
|
|
|
|
AssertIn(talker, (*Game::sv_maxclients)->current.integer);
|
|
|
|
return MuteList[talker];
|
|
|
|
}
|
|
|
|
|
2022-08-14 11:15:45 -04:00
|
|
|
bool Voice::OnSameTeam(const Game::gentity_s* ent1, const Game::gentity_s* ent2)
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
|
|
|
if (!ent1->client || !ent2->client)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (ent1->client->sess.cs.team)
|
|
|
|
{
|
|
|
|
return ent1->client->sess.cs.team == ent2->client->sess.cs.team;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
void Voice::SV_QueueVoicePacket(const int talkerNum, const int clientNum, const Game::VoicePacket_t* voicePacket)
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
|
|
|
assert(talkerNum >= 0);
|
|
|
|
assert(clientNum >= 0);
|
|
|
|
assert(talkerNum < (*Game::sv_maxclients)->current.integer);
|
|
|
|
assert(clientNum < (*Game::sv_maxclients)->current.integer);
|
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
if (VoicePacketCount[clientNum] < MAX_SERVER_QUEUED_VOICE_PACKETS)
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
2022-08-15 06:03:10 -04:00
|
|
|
VoicePackets[clientNum][VoicePacketCount[clientNum]].dataSize = voicePacket->dataSize;
|
|
|
|
std::memcpy(VoicePackets[clientNum][VoicePacketCount[clientNum]].data, voicePacket->data, voicePacket->dataSize);
|
2022-08-13 11:19:45 -04:00
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
assert(talkerNum == static_cast<std::uint8_t>(talkerNum));
|
|
|
|
VoicePackets[clientNum][VoicePacketCount[clientNum]].talker = static_cast<char>(talkerNum);
|
|
|
|
++VoicePacketCount[clientNum];
|
2022-08-13 11:19:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
void Voice::G_BroadcastVoice(Game::gentity_s* talker, const Game::VoicePacket_t* voicePacket)
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
|
|
|
for (auto otherPlayer = 0; otherPlayer < (*Game::sv_maxclients)->current.integer; ++otherPlayer)
|
|
|
|
{
|
|
|
|
auto* ent = &Game::g_entities[otherPlayer];
|
|
|
|
auto* client = ent->client;
|
|
|
|
|
|
|
|
if (ent->r.isInUse && client && (client->sess.sessionState == Game::SESS_STATE_INTERMISSION || OnSameTeam(talker, ent) || talker->client->sess.cs.team == Game::TEAM_FREE) &&
|
|
|
|
(ent->client->sess.sessionState == talker->client->sess.sessionState || (ent->client->sess.sessionState == Game::SESS_STATE_DEAD || talker->client->sess.sessionState == Game::SESS_STATE_DEAD) &&
|
2022-08-15 06:03:10 -04:00
|
|
|
(*Game::g_deadChat)->current.enabled) && (talker != ent) && !SV_ServerHasClientMuted(talker->s.number))
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
|
|
|
SV_QueueVoicePacket(talker->s.number, otherPlayer, voicePacket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Voice::SV_UserVoice(Game::client_t* cl, Game::msg_t* msg)
|
|
|
|
{
|
|
|
|
Game::VoicePacket_t voicePacket{};
|
|
|
|
|
|
|
|
if (!SV_VoiceEnabled())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto packetCount = Game::MSG_ReadByte(msg);
|
|
|
|
|
|
|
|
assert(cl->gentity);
|
|
|
|
|
2022-08-13 13:10:37 -04:00
|
|
|
for (auto packet = 0; packet < packetCount; ++packet)
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
|
|
|
voicePacket.dataSize = Game::MSG_ReadByte(msg);
|
|
|
|
if (voicePacket.dataSize <= 0 || voicePacket.dataSize > MAX_VOICE_PACKET_DATA)
|
|
|
|
{
|
|
|
|
Logger::Print(Game::CON_CHANNEL_SERVER, "Received invalid voice packet of size {} from {}\n", voicePacket.dataSize, cl->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(voicePacket.dataSize <= MAX_VOICE_PACKET_DATA);
|
|
|
|
assert(msg->data);
|
|
|
|
assert(voicePacket.data);
|
|
|
|
|
|
|
|
Game::MSG_ReadData(msg, voicePacket.data, voicePacket.dataSize);
|
|
|
|
G_BroadcastVoice(cl->gentity, &voicePacket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-13 13:10:37 -04:00
|
|
|
void Voice::SV_PreGameUserVoice(Game::client_t* cl, Game::msg_t* msg)
|
|
|
|
{
|
|
|
|
Game::VoicePacket_t voicePacket{};
|
|
|
|
|
|
|
|
if (!SV_VoiceEnabled())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto talker = cl - Game::svs_clients;
|
|
|
|
|
|
|
|
AssertIn(talker, (*Game::sv_maxclients)->current.integer);
|
|
|
|
|
|
|
|
const auto packetCount = Game::MSG_ReadByte(msg);
|
|
|
|
for (auto packet = 0; packet < packetCount; ++packet)
|
|
|
|
{
|
|
|
|
voicePacket.dataSize = Game::MSG_ReadShort(msg);
|
|
|
|
if (voicePacket.dataSize <= 0 || voicePacket.dataSize > MAX_VOICE_PACKET_DATA)
|
|
|
|
{
|
|
|
|
Logger::Print(Game::CON_CHANNEL_SERVER, "Received invalid voice packet of size {} from {}\n", voicePacket.dataSize, cl->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(voicePacket.dataSize <= MAX_VOICE_PACKET_DATA);
|
|
|
|
assert(msg->data);
|
|
|
|
assert(voicePacket.data);
|
|
|
|
|
|
|
|
Game::MSG_ReadData(msg, voicePacket.data, voicePacket.dataSize);
|
|
|
|
for (auto otherPlayer = 0; otherPlayer < (*Game::sv_maxclients)->current.integer; ++otherPlayer)
|
|
|
|
{
|
2022-08-15 06:03:10 -04:00
|
|
|
if (otherPlayer != talker && Game::svs_clients[otherPlayer].state >= Game::CS_CONNECTED && !SV_ServerHasClientMuted(talker))
|
2022-08-13 13:10:37 -04:00
|
|
|
{
|
|
|
|
SV_QueueVoicePacket(talker, otherPlayer, &voicePacket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-13 11:19:45 -04:00
|
|
|
void Voice::SV_VoicePacket(Game::netadr_t from, Game::msg_t* msg)
|
|
|
|
{
|
|
|
|
auto qport = Game::MSG_ReadShort(msg);
|
|
|
|
auto* cl = Game::SV_FindClientByAddress(from, qport, 0);
|
|
|
|
if (!cl || cl->state == Game::CS_ZOMBIE)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-08-13 13:10:37 -04:00
|
|
|
cl->lastPacketTime = *Game::svs_time;
|
|
|
|
if (cl->state < Game::CS_ACTIVE)
|
|
|
|
{
|
|
|
|
SV_PreGameUserVoice(cl, msg);
|
|
|
|
}
|
|
|
|
else
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
|
|
|
assert(cl->gentity);
|
|
|
|
SV_UserVoice(cl, msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-13 12:42:32 -04:00
|
|
|
void Voice::CL_WriteVoicePacket_Hk(const int localClientNum)
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
|
|
|
const auto connstate = Game::CL_GetLocalClientConnectionState(localClientNum);
|
|
|
|
const auto clc = Game::CL_GetLocalClientConnection(localClientNum);
|
|
|
|
const auto* vc = Game::CL_GetLocalClientVoiceCommunication(localClientNum);
|
|
|
|
if (clc->demoplaying || (connstate < Game::CA_LOADING))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char voicePacketBuf[0x800]{};
|
|
|
|
Game::msg_t msg{};
|
|
|
|
|
|
|
|
Game::MSG_Init(&msg, voicePacketBuf, sizeof(voicePacketBuf));
|
|
|
|
Game::MSG_WriteString(&msg, "v");
|
|
|
|
Game::MSG_WriteShort(&msg, clc->qport);
|
|
|
|
Game::MSG_WriteByte(&msg, vc->voicePacketCount);
|
|
|
|
|
|
|
|
for (auto voicePacket = 0; voicePacket < vc->voicePacketCount; ++voicePacket)
|
|
|
|
{
|
|
|
|
assert(vc->voicePackets[voicePacket].dataSize > 0);
|
|
|
|
assert(vc->voicePackets[voicePacket].dataSize < (2 << 15));
|
|
|
|
|
|
|
|
Game::MSG_WriteByte(&msg, vc->voicePackets[voicePacket].dataSize);
|
|
|
|
Game::MSG_WriteData(&msg, vc->voicePackets[voicePacket].data, vc->voicePackets[voicePacket].dataSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
Game::NET_OutOfBandVoiceData(clc->netchan.sock, clc->serverAddress, msg.data, msg.cursize, true);
|
|
|
|
if ((*Game::cl_showSend)->current.enabled)
|
|
|
|
{
|
|
|
|
Logger::Print(Game::CON_CHANNEL_CLIENT, "voice: {}\n", msg.cursize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-14 07:33:28 -04:00
|
|
|
void Voice::CL_ClearMutedList()
|
|
|
|
{
|
2022-08-15 06:03:10 -04:00
|
|
|
std::memset(S_PlayerMute, 0, sizeof(S_PlayerMute));
|
2022-08-14 07:33:28 -04:00
|
|
|
}
|
|
|
|
|
2022-08-14 11:15:45 -04:00
|
|
|
bool Voice::CL_IsPlayerTalking_Hk([[maybe_unused]] Game::SessionData* session, [[maybe_unused]] const int localClientNum, const int talkingClientIndex)
|
|
|
|
{
|
|
|
|
// Skip all the Party related code
|
|
|
|
return Game::Voice_IsClientTalking(talkingClientIndex);
|
|
|
|
}
|
|
|
|
|
2022-08-13 12:42:32 -04:00
|
|
|
bool Voice::CL_IsPlayerMuted_Hk([[maybe_unused]] Game::SessionData* session, [[maybe_unused]] const int localClientNum, const int muteClientIndex)
|
|
|
|
{
|
|
|
|
AssertIn(muteClientIndex, Game::MAX_CLIENTS);
|
2022-08-15 06:03:10 -04:00
|
|
|
return S_PlayerMute[muteClientIndex];
|
2022-08-13 12:42:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void Voice::CL_MutePlayer_Hk([[maybe_unused]] Game::SessionData* session, const int muteClientIndex)
|
|
|
|
{
|
|
|
|
AssertIn(muteClientIndex, Game::MAX_CLIENTS);
|
2022-08-15 06:03:10 -04:00
|
|
|
S_PlayerMute[muteClientIndex] = true;
|
2022-08-13 12:42:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void Voice::Voice_UnmuteMember_Hk([[maybe_unused]] Game::SessionData* session, const int clientNum)
|
|
|
|
{
|
|
|
|
AssertIn(clientNum, Game::MAX_CLIENTS);
|
2022-08-15 06:03:10 -04:00
|
|
|
S_PlayerMute[clientNum] = false;
|
2022-08-13 12:42:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void Voice::CL_TogglePlayerMute(const int localClientNum, const int muteClientIndex)
|
|
|
|
{
|
|
|
|
AssertIn(muteClientIndex, Game::MAX_CLIENTS);
|
|
|
|
|
|
|
|
if (CL_IsPlayerMuted_Hk(nullptr, localClientNum, muteClientIndex))
|
|
|
|
{
|
|
|
|
Voice_UnmuteMember_Hk(nullptr, muteClientIndex);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CL_MutePlayer_Hk(nullptr, muteClientIndex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-13 11:19:45 -04:00
|
|
|
void Voice::CL_VoicePacket_Hk(const int localClientNum, Game::msg_t* msg)
|
|
|
|
{
|
|
|
|
const auto numPackets = Game::MSG_ReadByte(msg);
|
|
|
|
if (numPackets < 0 || numPackets > MAX_SERVER_QUEUED_VOICE_PACKETS)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Game::VoicePacket_t voicePacket{};
|
|
|
|
for (auto packet = 0; packet < numPackets; ++packet)
|
|
|
|
{
|
|
|
|
voicePacket.talker = static_cast<char>(Game::MSG_ReadByte(msg));
|
|
|
|
voicePacket.dataSize = Game::MSG_ReadByte(msg);
|
|
|
|
if (voicePacket.dataSize <= 0 || voicePacket.dataSize > MAX_VOICE_PACKET_DATA)
|
|
|
|
{
|
|
|
|
Logger::Print(Game::CON_CHANNEL_CLIENT, "Invalid server voice packet of {} bytes\n", voicePacket.dataSize);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Game::MSG_ReadData(msg, voicePacket.data, voicePacket.dataSize);
|
|
|
|
|
|
|
|
if (static_cast<unsigned char>(voicePacket.talker) >= Game::MAX_CLIENTS)
|
|
|
|
{
|
|
|
|
Logger::Print(Game::CON_CHANNEL_CLIENT, "Invalid voice packet - talker was {}\n", voicePacket.talker);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-08-13 12:42:32 -04:00
|
|
|
if (!CL_IsPlayerMuted_Hk(nullptr, localClientNum, voicePacket.talker))
|
2022-08-13 11:19:45 -04:00
|
|
|
{
|
|
|
|
if ((*Game::cl_voice)->current.enabled)
|
|
|
|
{
|
2022-08-13 12:42:32 -04:00
|
|
|
Game::Voice_IncomingVoiceData(nullptr, voicePacket.talker, reinterpret_cast<unsigned char*>(voicePacket.data), voicePacket.dataSize);
|
2022-08-13 11:19:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-14 11:15:45 -04:00
|
|
|
void Voice::UI_Mute_player(const int clientNum, const int localClientNum)
|
2022-08-13 12:42:32 -04:00
|
|
|
{
|
2022-08-14 07:33:28 -04:00
|
|
|
CL_TogglePlayerMute(localClientNum, Game::sharedUiInfo->playerClientNums[clientNum]);
|
2022-08-13 12:42:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
__declspec(naked) void Voice::UI_Mute_Player_Stub()
|
|
|
|
{
|
|
|
|
__asm
|
|
|
|
{
|
|
|
|
push eax
|
|
|
|
call UI_Mute_player
|
|
|
|
add esp, 8 // Game already pushed localClientNum
|
|
|
|
|
|
|
|
pop edi
|
|
|
|
pop esi
|
|
|
|
add esp, 0xC00
|
|
|
|
ret
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-13 11:19:45 -04:00
|
|
|
Voice::Voice()
|
|
|
|
{
|
|
|
|
AssertOffset(Game::clientUIActive_t, connectionState, 0x9B8);
|
|
|
|
|
2022-08-15 06:03:10 -04:00
|
|
|
std::memset(VoicePackets, 0, sizeof(VoicePackets));
|
|
|
|
std::memset(VoicePacketCount, 0, sizeof(VoicePacketCount));
|
|
|
|
|
|
|
|
SV_ClearMutedList();
|
|
|
|
CL_ClearMutedList();
|
2022-08-13 12:42:32 -04:00
|
|
|
|
2022-08-14 07:33:28 -04:00
|
|
|
Events::OnSteamDisconnect(CL_ClearMutedList);
|
|
|
|
|
2022-08-13 11:19:45 -04:00
|
|
|
// Write voice packets to the server instead of other clients
|
|
|
|
Utils::Hook(0x487935, CL_WriteVoicePacket_Hk, HOOK_CALL).install()->quick();
|
|
|
|
Utils::Hook(0x5AD945, CL_WriteVoicePacket_Hk, HOOK_CALL).install()->quick();
|
|
|
|
Utils::Hook(0x5A9E06, CL_VoicePacket_Hk, HOOK_CALL).install()->quick();
|
|
|
|
|
2022-08-14 11:15:45 -04:00
|
|
|
Utils::Hook(0x4AE740, CL_IsPlayerTalking_Hk, HOOK_JUMP).install()->quick();
|
2022-08-13 12:42:32 -04:00
|
|
|
Utils::Hook(0x4B6250, CL_IsPlayerMuted_Hk, HOOK_JUMP).install()->quick();
|
|
|
|
|
2022-08-13 11:19:45 -04:00
|
|
|
Utils::Hook(0x4519F5, SV_SendClientMessages_Stub, HOOK_CALL).install()->quick();
|
|
|
|
|
|
|
|
// Recycle packet handler for 'icanthear'
|
|
|
|
Utils::Hook::Set<const char*>(0x62673F, "v");
|
|
|
|
Utils::Hook(0x626787, SV_VoicePacket, HOOK_CALL).install()->quick();
|
|
|
|
|
2022-08-13 12:42:32 -04:00
|
|
|
Utils::Hook(0x45F041, UI_Mute_Player_Stub, HOOK_JUMP).install()->quick();
|
|
|
|
|
|
|
|
Utils::Hook(0x4C6B50, Voice_UnmuteMember_Hk, HOOK_JUMP).install()->quick();
|
|
|
|
Utils::Hook(0x43F460, CL_MutePlayer_Hk, HOOK_JUMP).install()->quick();
|
|
|
|
|
2022-08-13 11:19:45 -04:00
|
|
|
sv_voice = Game::Dvar_RegisterBool("sv_voice", false, Game::DVAR_NONE, "Use server side voice communications");
|
|
|
|
}
|
|
|
|
}
|