2017-02-25 19:36:37 -05:00
|
|
|
#include "STDInclude.hpp"
|
|
|
|
|
|
|
|
namespace Components
|
|
|
|
{
|
2017-06-29 09:54:40 -04:00
|
|
|
int64_t* Stats::GetStatsID()
|
|
|
|
{
|
|
|
|
static int64_t id = 0x110000100001337;
|
|
|
|
return &id;
|
|
|
|
}
|
|
|
|
|
2017-02-26 15:34:18 -05:00
|
|
|
bool Stats::IsMaxLevel()
|
|
|
|
{
|
|
|
|
// 2516000 should be the max experience.
|
2017-02-28 05:40:33 -05:00
|
|
|
return (Game::Live_GetXp(0) >= Game::CL_GetMaxXP());
|
2017-02-26 15:34:18 -05:00
|
|
|
}
|
|
|
|
|
2017-02-25 19:36:37 -05:00
|
|
|
void Stats::SendStats()
|
|
|
|
{
|
|
|
|
// check if we're connected to a server...
|
|
|
|
if (*reinterpret_cast<std::uint32_t*>(0xB2C540) >= 7)
|
|
|
|
{
|
2017-04-24 16:33:13 -04:00
|
|
|
for (unsigned char i = 0; i < 7; ++i)
|
2017-02-25 19:36:37 -05:00
|
|
|
{
|
|
|
|
Game::Com_Printf(0, "Sending stat packet %i to server.\n", i);
|
|
|
|
|
|
|
|
// alloc
|
|
|
|
Game::msg_t msg;
|
2017-02-28 07:36:38 -05:00
|
|
|
char buffer[2048];
|
2017-02-28 05:40:33 -05:00
|
|
|
ZeroMemory(&msg, sizeof(msg));
|
2017-02-28 07:36:38 -05:00
|
|
|
ZeroMemory(&buffer, sizeof(buffer));
|
2017-02-25 19:36:37 -05:00
|
|
|
|
|
|
|
// init
|
2017-02-28 07:36:38 -05:00
|
|
|
Game::MSG_Init(&msg, buffer, sizeof(buffer));
|
2017-02-25 19:36:37 -05:00
|
|
|
Game::MSG_WriteString(&msg, "stats");
|
|
|
|
|
|
|
|
// get stat buffer
|
|
|
|
char *statbuffer = nullptr;
|
|
|
|
if (Utils::Hook::Call<int(int)>(0x444CA0)(0))
|
|
|
|
{
|
|
|
|
statbuffer = &Utils::Hook::Call<char *(int)>(0x4C49F0)(0)[1240 * i];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Client port?
|
2017-02-28 05:40:33 -05:00
|
|
|
Game::MSG_WriteShort(&msg, *reinterpret_cast<short*>(0xA1E878));
|
2017-02-25 19:36:37 -05:00
|
|
|
|
|
|
|
// Stat packet index
|
|
|
|
Game::MSG_WriteByte(&msg, i);
|
|
|
|
|
|
|
|
// write stat packet data
|
|
|
|
if (statbuffer)
|
|
|
|
{
|
2017-02-28 10:56:14 -05:00
|
|
|
Game::MSG_WriteData(&msg, statbuffer, std::min(8192 - (i * 1240), 1240));
|
2017-02-25 19:36:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// send statpacket
|
2018-05-09 08:33:52 -04:00
|
|
|
Network::SendRaw(Game::NS_CLIENT1, *reinterpret_cast<Game::netadr_t*>(0xA1E888), std::string(msg.data, msg.cursize));
|
2017-02-25 19:36:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-25 19:43:26 -05:00
|
|
|
void Stats::UpdateClasses(UIScript::Token)
|
2017-02-25 19:36:37 -05:00
|
|
|
{
|
2017-03-04 07:51:41 -05:00
|
|
|
Stats::SendStats();
|
2017-02-25 19:36:37 -05:00
|
|
|
}
|
|
|
|
|
2019-10-01 09:06:40 -04:00
|
|
|
int Stats::SaveStats(char* dest, const char* folder, const char* buffer, size_t length)
|
|
|
|
{
|
|
|
|
const auto fs_game = Game::Dvar_FindVar("fs_game");
|
|
|
|
if (fs_game && fs_game->current.string && strlen(fs_game->current.string) && !strncmp(fs_game->current.string, "mods/", 5))
|
|
|
|
{
|
|
|
|
folder = fs_game->current.string;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Utils::Hook::Call<int(char*, const char*, const char*, size_t)>(0x426450)(dest, folder, buffer, length);
|
|
|
|
}
|
|
|
|
|
2017-02-25 19:36:37 -05:00
|
|
|
Stats::Stats()
|
|
|
|
{
|
|
|
|
// This UIScript should be added in the onClose code of the cac_popup menu,
|
|
|
|
// so everytime the create-a-class window is closed, and a client is connected
|
|
|
|
// to a server, the stats data of the client will be reuploaded to the server.
|
|
|
|
// allowing the player to change their classes while connected to a server.
|
|
|
|
UIScript::Add("UpdateClasses", Stats::UpdateClasses);
|
|
|
|
|
|
|
|
// Allow playerdata to be changed while connected to a server
|
|
|
|
Utils::Hook::Set<BYTE>(0x4376FD, 0xEB);
|
|
|
|
|
|
|
|
// ToDo: Allow playerdata changes in setPlayerData UI script.
|
2017-06-29 09:54:40 -04:00
|
|
|
|
|
|
|
// Rename stat file
|
|
|
|
Utils::Hook::SetString(0x71C048, "iw4x.stat");
|
|
|
|
|
|
|
|
// Patch stats steamid
|
|
|
|
Utils::Hook::Nop(0x682EBF, 20);
|
|
|
|
Utils::Hook::Nop(0x6830B1, 20);
|
|
|
|
Utils::Hook(0x682EBF, Stats::GetStatsID, HOOK_CALL).install()->quick();
|
|
|
|
Utils::Hook(0x6830B1, Stats::GetStatsID, HOOK_CALL).install()->quick();
|
|
|
|
//Utils::Hook::Set<BYTE>(0x68323A, 0xEB);
|
|
|
|
|
|
|
|
// Never use remote stat saving
|
|
|
|
Utils::Hook::Set<BYTE>(0x682F39, 0xEB);
|
|
|
|
|
|
|
|
// Don't create stat backup
|
|
|
|
Utils::Hook::Nop(0x402CE6, 2);
|
2019-10-01 09:06:40 -04:00
|
|
|
|
|
|
|
// Write stats to mod folder if a mod is loaded
|
|
|
|
Utils::Hook(0x682F7B, Stats::SaveStats, HOOK_CALL).install()->quick();
|
2017-02-25 19:36:37 -05:00
|
|
|
}
|
2017-06-14 06:06:04 -04:00
|
|
|
|
2017-02-25 19:36:37 -05:00
|
|
|
Stats::~Stats()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|