
* feat(Spoofing): add spoofing * feat(Spoofing): prepare code for player attach * remove(PlayerAttach): isn't going to work due to netsync architecture * fix(GUI): fix scaling * feat(Project): add clang-format file * feat(Classes): update classes * fix(BlackHole): remove unnecessary cleanup * fix(Formatting): fix formatting for initializer lists * feat(clang-format): Set tab width and 1 space before comment Co-authored-by: Yimura <24669514+Yimura@users.noreply.github.com>
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
#include "fiber_pool.hpp"
|
|
#include "function_types.hpp"
|
|
#include "hooking.hpp"
|
|
#include "services/matchmaking/matchmaking_service.hpp"
|
|
|
|
#include <network/Network.hpp>
|
|
|
|
namespace big
|
|
{
|
|
bool hooks::start_matchmaking_find_sessions(int profile_index, int available_slots, NetworkGameFilterMatchmakingComponent* filter, unsigned int max_sessions, rage::rlSessionInfo* results, int* num_sessions_found, rage::rlTaskStatus* status)
|
|
{
|
|
int discriminator = filter->m_param_values[0];// this is guaranteed to work
|
|
|
|
if (g.session_browser.replace_game_matchmaking && filter->m_filter_type == 1)
|
|
{
|
|
status->status = 1;
|
|
g_fiber_pool->queue_job([max_sessions, results, num_sessions_found, status, discriminator] {
|
|
bool result = false;
|
|
|
|
if (g.session.join_in_sctv_slots)
|
|
result = g_matchmaking_service->matchmake();
|
|
else
|
|
result = g_matchmaking_service->matchmake(discriminator);
|
|
|
|
if (result)
|
|
{
|
|
for (int i = 0; i < g_matchmaking_service->get_num_found_sessions(); i++)
|
|
{
|
|
if (g_matchmaking_service->get_found_sessions()[i].is_valid)
|
|
{
|
|
results[*num_sessions_found] = g_matchmaking_service->get_found_sessions()[i].info;
|
|
(*num_sessions_found)++;
|
|
|
|
if (max_sessions <= *num_sessions_found)
|
|
break;
|
|
}
|
|
}
|
|
|
|
status->status = 3;
|
|
}
|
|
else
|
|
{
|
|
status->status = 2;
|
|
}
|
|
});
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return g_hooking->get_original<hooks::start_matchmaking_find_sessions>()(profile_index, available_slots, filter, max_sessions, results, num_sessions_found, status);
|
|
}
|
|
}
|
|
} |