2016-01-04 14:58:00 -05:00
|
|
|
#include "STDInclude.hpp"
|
2016-01-01 20:28:09 -05:00
|
|
|
|
|
|
|
namespace Components
|
|
|
|
{
|
|
|
|
std::string Playlist::CurrentPlaylistBuffer;
|
2016-01-03 09:14:44 -05:00
|
|
|
std::string Playlist::ReceivedPlaylistBuffer;
|
2016-01-01 20:28:09 -05:00
|
|
|
|
|
|
|
void Playlist::LoadPlaylist()
|
|
|
|
{
|
|
|
|
// Check if playlist already loaded
|
|
|
|
if (Utils::Hook::Get<bool>(0x1AD3680)) return;
|
|
|
|
|
2016-01-08 08:24:05 -05:00
|
|
|
// Don't load playlists when dedi and no party
|
|
|
|
if (Dedicated::IsDedicated() && !Dvar::Var("party_enable").Get<bool>())
|
|
|
|
{
|
|
|
|
Utils::Hook::Set<bool>(0x1AD3680, true); // Set received to true
|
|
|
|
Dvar::Var("xblive_privateserver").Set(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Dvar::Var("xblive_privateserver").Set(false);
|
|
|
|
|
2016-01-01 20:28:09 -05:00
|
|
|
std::string playlistFilename = Dvar::Var("playlistFilename").Get<char*>();
|
|
|
|
FileSystem::File playlist(playlistFilename);
|
|
|
|
|
|
|
|
if (playlist.Exists())
|
|
|
|
{
|
|
|
|
Logger::Print("Parsing playlist '%s'...\n", playlist.GetName().data());
|
|
|
|
Game::Live_ParsePlaylists(playlist.GetBuffer().data());
|
|
|
|
Utils::Hook::Set<bool>(0x1AD3680, true); // Playlist loaded
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Logger::Print("Unable to load playlist '%s'!\n", playlist.GetName().data());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD Playlist::StorePlaylistStub(const char** buffer)
|
|
|
|
{
|
|
|
|
Playlist::CurrentPlaylistBuffer = *buffer;
|
2016-01-01 20:47:15 -05:00
|
|
|
return Utils::Hook::Call<DWORD(const char**)>(0x4C0350)(buffer);
|
2016-01-01 20:28:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void Playlist::PlaylistRequest(Network::Address address, std::string data)
|
|
|
|
{
|
|
|
|
Logger::Print("Received playlist request, sending currently stored buffer.\n");
|
2016-01-03 09:14:44 -05:00
|
|
|
|
2016-01-09 09:30:13 -05:00
|
|
|
std::string compressedList = Utils::Compression::ZLib::Compress(Playlist::CurrentPlaylistBuffer);
|
|
|
|
unsigned int size = compressedList.size();
|
|
|
|
unsigned int hash = Utils::OneAtATime(compressedList.data(), compressedList.size());
|
|
|
|
|
|
|
|
std::string response = "playlistresponse\n";
|
|
|
|
response.append(reinterpret_cast<char*>(&hash), 4);
|
|
|
|
response.append(reinterpret_cast<char*>(&size), 4);
|
|
|
|
response.append(compressedList);
|
|
|
|
|
|
|
|
Network::SendRaw(address, response);
|
2016-01-01 20:28:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void Playlist::PlaylistReponse(Network::Address address, std::string data)
|
|
|
|
{
|
|
|
|
if (Party::PlaylistAwaiting())
|
|
|
|
{
|
|
|
|
if (address == Party::Target())
|
|
|
|
{
|
2016-01-03 09:14:44 -05:00
|
|
|
if (data.size() <= 8)
|
|
|
|
{
|
|
|
|
Party::PlaylistError(Utils::VA("Received playlist response, but it is invalid."));
|
|
|
|
Playlist::ReceivedPlaylistBuffer.clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-09 09:56:40 -05:00
|
|
|
// Read hash and length
|
2016-01-24 06:19:34 -05:00
|
|
|
unsigned int hash = *reinterpret_cast<unsigned int*>(const_cast<char*>(data.data()));
|
|
|
|
unsigned int length = *reinterpret_cast<unsigned int*>(const_cast<char*>(data.data() + 4));
|
2016-01-09 09:30:13 -05:00
|
|
|
|
2016-01-09 09:56:40 -05:00
|
|
|
// Verify length
|
2016-01-09 09:30:13 -05:00
|
|
|
if (length > (data.size() - 8))
|
2016-01-03 09:14:44 -05:00
|
|
|
{
|
2016-01-09 09:30:13 -05:00
|
|
|
Party::PlaylistError(Utils::VA("Received playlist response, but it is too short."));
|
2016-01-03 09:14:44 -05:00
|
|
|
Playlist::ReceivedPlaylistBuffer.clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-09 09:56:40 -05:00
|
|
|
// Generate buffer and hash
|
2016-01-09 09:30:13 -05:00
|
|
|
std::string compressedData(data.data() + 8, length);
|
2016-01-09 09:56:40 -05:00
|
|
|
unsigned int hash2 = Utils::OneAtATime(compressedData.data(), compressedData.size());
|
2016-01-03 09:14:44 -05:00
|
|
|
|
2016-01-09 09:56:40 -05:00
|
|
|
//Validate hashes
|
2016-01-09 09:30:13 -05:00
|
|
|
if (hash2 != hash)
|
|
|
|
{
|
|
|
|
Party::PlaylistError(Utils::VA("Received playlist response, but the checksum did not match (%d != %d).", hash, hash2));
|
2016-01-03 09:14:44 -05:00
|
|
|
Playlist::ReceivedPlaylistBuffer.clear();
|
2016-01-09 09:30:13 -05:00
|
|
|
return;
|
2016-01-03 09:14:44 -05:00
|
|
|
}
|
2016-01-09 09:30:13 -05:00
|
|
|
|
2016-01-09 09:56:40 -05:00
|
|
|
// Decompress buffer
|
|
|
|
Playlist::ReceivedPlaylistBuffer = Utils::Compression::ZLib::Decompress(compressedData);
|
|
|
|
|
|
|
|
// Load and continue connection
|
|
|
|
Logger::Print("Received playlist, loading and continuing connection...\n");
|
|
|
|
Game::Live_ParsePlaylists(Playlist::ReceivedPlaylistBuffer.data());
|
|
|
|
Party::PlaylistContinue();
|
2016-01-03 09:14:44 -05:00
|
|
|
}
|
2016-01-01 20:28:09 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Logger::Print("Received playlist from someone else than our target host, ignoring it.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Logger::Print("Received stray playlist response, ignoring it.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Playlist::Playlist()
|
|
|
|
{
|
2016-01-02 20:37:06 -05:00
|
|
|
// Default playlists
|
|
|
|
Utils::Hook::Set<char*>(0x60B06E, "playlists_default.info");
|
2016-01-01 20:28:09 -05:00
|
|
|
|
|
|
|
// disable playlist download function
|
|
|
|
Utils::Hook::Set<BYTE>(0x4D4790, 0xC3);
|
|
|
|
|
|
|
|
// Load playlist, but don't delete it
|
|
|
|
Utils::Hook::Nop(0x4D6EBB, 5);
|
|
|
|
Utils::Hook::Nop(0x4D6E67, 5);
|
|
|
|
Utils::Hook::Nop(0x4D6E71, 2);
|
|
|
|
|
|
|
|
// playlist dvar 'validity check'
|
|
|
|
Utils::Hook::Set<BYTE>(0x4B1170, 0xC3);
|
|
|
|
|
|
|
|
// disable playlist checking
|
2016-01-01 22:51:08 -05:00
|
|
|
Utils::Hook::Set<BYTE>(0x5B69E9, 0xEB); // too new
|
2016-01-01 20:28:09 -05:00
|
|
|
Utils::Hook::Set<BYTE>(0x5B696E, 0xEB); // too old
|
|
|
|
|
|
|
|
//Got playlists is true
|
|
|
|
//Utils::Hook::Set<bool>(0x1AD3680, true);
|
|
|
|
|
|
|
|
// Store playlist buffer on load
|
|
|
|
Utils::Hook(0x42961C, Playlist::StorePlaylistStub, HOOK_CALL).Install()->Quick();
|
|
|
|
|
2016-01-02 20:37:06 -05:00
|
|
|
//if (Dedicated::IsDedicated())
|
2016-01-01 20:28:09 -05:00
|
|
|
{
|
|
|
|
// Custom playlist loading
|
|
|
|
Utils::Hook(0x420B5A, Playlist::LoadPlaylist, HOOK_JUMP).Install()->Quick();
|
|
|
|
|
|
|
|
// disable playlist.ff loading function
|
|
|
|
Utils::Hook::Set<BYTE>(0x4D6E60, 0xC3);
|
|
|
|
}
|
|
|
|
|
|
|
|
Network::Handle("getplaylist", PlaylistRequest);
|
|
|
|
Network::Handle("playlistresponse", PlaylistReponse);
|
|
|
|
}
|
|
|
|
|
|
|
|
Playlist::~Playlist()
|
|
|
|
{
|
|
|
|
Playlist::CurrentPlaylistBuffer.clear();
|
2016-01-03 09:14:44 -05:00
|
|
|
Playlist::ReceivedPlaylistBuffer.clear();
|
2016-01-01 20:28:09 -05:00
|
|
|
}
|
|
|
|
}
|