Matchmaking accuracy improvements.

This commit is contained in:
Mr_Goldberg 2020-02-15 17:20:48 -05:00
parent 3b9366e71b
commit 6884c1e551
No known key found for this signature in database
GPG Key ID: 8597D87419DEF278
1 changed files with 3 additions and 3 deletions

View File

@ -381,8 +381,7 @@ bool RemoveFavoriteGame( AppId_t nAppID, uint32 nIP, uint16 nConnPort, uint16 nQ
} }
*/ */
// //
#define LOBBY_SEARCH_TIMEOUT 3.0 //defined by steam as being 20 seconds max and 3 seconds typically (Should be no less than 3 because or else SGZH doesn't work). #define LOBBY_SEARCH_TIMEOUT 0.2 //Tested on real steam
//Sanctum 2 needs this to be 2 seconds for the game to appear in the list though.
STEAM_CALL_RESULT( LobbyMatchList_t ) STEAM_CALL_RESULT( LobbyMatchList_t )
SteamAPICall_t RequestLobbyList() SteamAPICall_t RequestLobbyList()
{ {
@ -457,7 +456,7 @@ void AddRequestLobbyListFilterSlotsAvailable( int nSlotsAvailable )
// sets the distance for which we should search for lobbies (based on users IP address to location map on the Steam backed) // sets the distance for which we should search for lobbies (based on users IP address to location map on the Steam backed)
void AddRequestLobbyListDistanceFilter( ELobbyDistanceFilter eLobbyDistanceFilter ) void AddRequestLobbyListDistanceFilter( ELobbyDistanceFilter eLobbyDistanceFilter )
{ {
PRINT_DEBUG("AddRequestLobbyListDistanceFilter\n"); PRINT_DEBUG("AddRequestLobbyListDistanceFilter %i\n", eLobbyDistanceFilter);
std::lock_guard<std::recursive_mutex> lock(global_mutex); std::lock_guard<std::recursive_mutex> lock(global_mutex);
@ -652,6 +651,7 @@ void LeaveLobby( CSteamID steamIDLobby )
if (lobbies.end() != lobby) { if (lobbies.end() != lobby) {
if (!lobby->deleted()) { if (!lobby->deleted()) {
on_self_enter_leave_lobby((uint64)lobby->room_id(), lobby->type(), true); on_self_enter_leave_lobby((uint64)lobby->room_id(), lobby->type(), true);
self_lobby_member_data.erase(lobby->room_id());
if (lobby->owner() != settings->get_local_steam_id().ConvertToUint64()) { if (lobby->owner() != settings->get_local_steam_id().ConvertToUint64()) {
PRINT_DEBUG("LeaveLobby not owner\n"); PRINT_DEBUG("LeaveLobby not owner\n");
leave_lobby(&(*lobby), settings->get_local_steam_id()); leave_lobby(&(*lobby), settings->get_local_steam_id());