2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
|
|
|
|
Doom 3 BFG Edition GPL Source Code
|
2012-11-28 15:47:07 +00:00
|
|
|
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
|
2012-11-26 18:58:24 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Doom 3 BFG Edition Source Code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
In addition, the Doom 3 BFG Edition Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 BFG Edition Source Code. If not, please request a copy in writing from id Software at the address below.
|
|
|
|
|
|
|
|
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
|
|
|
|
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
#ifndef __SYS_SESSION_H__
|
|
|
|
#define __SYS_SESSION_H__
|
|
|
|
|
|
|
|
#include "../framework/Serializer.h"
|
|
|
|
#include "sys_localuser.h"
|
|
|
|
|
|
|
|
typedef uint8 peerMask_t;
|
|
|
|
static const int MAX_PLAYERS = 8;
|
|
|
|
|
|
|
|
static const int MAX_REDUNDANT_CMDS = 3;
|
|
|
|
|
|
|
|
static const int MAX_LOCAL_PLAYERS = 2;
|
|
|
|
static const int MAX_INPUT_DEVICES = 4;
|
2012-11-28 15:47:07 +00:00
|
|
|
enum matchFlags_t
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
MATCH_STATS = BIT( 0 ), // Match will upload leaderboard/achievement scores
|
|
|
|
MATCH_ONLINE = BIT( 1 ), // Match will require users to be online
|
|
|
|
MATCH_RANKED = BIT( 2 ), // Match will affect rank
|
|
|
|
MATCH_PRIVATE = BIT( 3 ), // Match will NOT be searchable through FindOrCreateMatch
|
|
|
|
MATCH_INVITE_ONLY = BIT( 4 ), // Match visible through invite only
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
MATCH_REQUIRE_PARTY_LOBBY = BIT( 5 ), // This session uses a party lobby
|
|
|
|
MATCH_PARTY_INVITE_PLACEHOLDER = BIT( 6 ), // Party is never shown in the UI, it's simply used as a placeholder for invites
|
|
|
|
MATCH_JOIN_IN_PROGRESS = BIT( 7 ), // Join in progress supported for this match
|
|
|
|
};
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
ID_INLINE bool MatchTypeIsOnline( uint8 matchFlags )
|
|
|
|
{
|
|
|
|
return ( matchFlags & MATCH_ONLINE ) ? true : false;
|
|
|
|
}
|
|
|
|
ID_INLINE bool MatchTypeIsLocal( uint8 matchFlags )
|
|
|
|
{
|
|
|
|
return !MatchTypeIsOnline( matchFlags );
|
|
|
|
}
|
|
|
|
ID_INLINE bool MatchTypeIsPrivate( uint8 matchFlags )
|
|
|
|
{
|
|
|
|
return ( matchFlags & MATCH_PRIVATE ) ? true : false;
|
|
|
|
}
|
|
|
|
ID_INLINE bool MatchTypeIsRanked( uint8 matchFlags )
|
|
|
|
{
|
|
|
|
return ( matchFlags & MATCH_RANKED ) ? true : false;
|
|
|
|
}
|
|
|
|
ID_INLINE bool MatchTypeHasStats( uint8 matchFlags )
|
|
|
|
{
|
|
|
|
return ( matchFlags & MATCH_STATS ) ? true : false;
|
|
|
|
}
|
|
|
|
ID_INLINE bool MatchTypeInviteOnly( uint8 matchFlags )
|
|
|
|
{
|
|
|
|
return ( matchFlags & MATCH_INVITE_ONLY ) ? true : false;
|
|
|
|
}
|
|
|
|
ID_INLINE bool MatchTypeIsSearchable( uint8 matchFlags )
|
|
|
|
{
|
|
|
|
return !MatchTypeIsPrivate( matchFlags );
|
|
|
|
}
|
|
|
|
ID_INLINE bool MatchTypeIsJoinInProgress( uint8 matchFlags )
|
|
|
|
{
|
|
|
|
return ( matchFlags & MATCH_JOIN_IN_PROGRESS ) ? true : false;
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
class idCompressor;
|
|
|
|
class idLeaderboardSubmission;
|
|
|
|
class idLeaderboardQuery;
|
|
|
|
class idSignInManagerBase;
|
|
|
|
class idPlayerProfile;
|
|
|
|
class idGameSpawnInfo;
|
|
|
|
class idSaveLoadParms;
|
|
|
|
class idSaveGameManager;
|
|
|
|
class idLocalUser;
|
|
|
|
class idDedicatedServerSearch;
|
|
|
|
class idAchievementSystem;
|
|
|
|
class idLeaderboardCallback;
|
|
|
|
|
|
|
|
struct leaderboardDefinition_t;
|
|
|
|
struct column_t;
|
|
|
|
|
|
|
|
const int8 GAME_MODE_RANDOM = -1;
|
|
|
|
const int8 GAME_MODE_SINGLEPLAYER = -2;
|
|
|
|
|
|
|
|
const int8 GAME_MAP_RANDOM = -1;
|
|
|
|
const int8 GAME_MAP_SINGLEPLAYER = -2;
|
|
|
|
|
|
|
|
const int8 GAME_EPISODE_UNKNOWN = -1;
|
|
|
|
const int8 GAME_SKILL_DEFAULT = -1;
|
|
|
|
|
|
|
|
const int DefaultPartyFlags = MATCH_JOIN_IN_PROGRESS | MATCH_ONLINE;
|
|
|
|
const int DefaultPublicGameFlags = MATCH_JOIN_IN_PROGRESS | MATCH_REQUIRE_PARTY_LOBBY | MATCH_RANKED | MATCH_STATS;
|
|
|
|
const int DefaultPrivateGameFlags = MATCH_JOIN_IN_PROGRESS | MATCH_REQUIRE_PARTY_LOBBY | MATCH_PRIVATE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
================================================
|
2012-11-28 15:47:07 +00:00
|
|
|
idMatchParameters
|
2012-11-26 18:58:24 +00:00
|
|
|
================================================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
class idMatchParameters
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
|
|
|
idMatchParameters() :
|
|
|
|
numSlots( MAX_PLAYERS ),
|
|
|
|
gameMode( GAME_MODE_RANDOM ),
|
|
|
|
gameMap( GAME_MAP_RANDOM ),
|
|
|
|
gameEpisode( GAME_EPISODE_UNKNOWN ),
|
|
|
|
gameSkill( GAME_SKILL_DEFAULT ),
|
|
|
|
matchFlags( 0 )
|
|
|
|
{}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
void Write( idBitMsg& msg )
|
|
|
|
{
|
|
|
|
idSerializer s( msg, true );
|
|
|
|
Serialize( s );
|
|
|
|
}
|
|
|
|
void Read( idBitMsg& msg )
|
|
|
|
{
|
|
|
|
idSerializer s( msg, false );
|
|
|
|
Serialize( s );
|
|
|
|
}
|
|
|
|
|
|
|
|
void Serialize( idSerializer& serializer )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
serializer.Serialize( gameMode );
|
|
|
|
serializer.Serialize( gameMap );
|
|
|
|
serializer.Serialize( gameEpisode );
|
|
|
|
serializer.Serialize( gameSkill );
|
|
|
|
serializer.Serialize( numSlots );
|
|
|
|
serializer.Serialize( matchFlags );
|
|
|
|
serializer.SerializeString( mapName );
|
|
|
|
serverInfo.Serialize( serializer );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
uint8 numSlots;
|
|
|
|
int8 gameMode;
|
|
|
|
int8 gameMap;
|
|
|
|
int8 gameEpisode; // Episode for doom classic support.
|
|
|
|
int8 gameSkill; // Skill for doom classic support.
|
|
|
|
uint8 matchFlags;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idStr mapName; // This is only used for SP (gameMap == GAME_MAP_SINGLEPLAYER)
|
|
|
|
idDict serverInfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
================================================
|
|
|
|
serverInfo_t
|
|
|
|
Results from calling ListServers/ServerInfo for game browser / system link.
|
|
|
|
================================================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
struct serverInfo_t
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
serverInfo_t() :
|
|
|
|
gameMode( GAME_MODE_RANDOM ),
|
|
|
|
gameMap( GAME_MAP_RANDOM ),
|
|
|
|
joinable(),
|
|
|
|
numPlayers(),
|
|
|
|
maxPlayers()
|
|
|
|
{}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
void Write( idBitMsg& msg )
|
|
|
|
{
|
|
|
|
idSerializer s( msg, true );
|
|
|
|
Serialize( s );
|
|
|
|
}
|
|
|
|
void Read( idBitMsg& msg )
|
|
|
|
{
|
|
|
|
idSerializer s( msg, false );
|
|
|
|
Serialize( s );
|
|
|
|
}
|
|
|
|
|
|
|
|
void Serialize( idSerializer& serializer )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
serializer.SerializeString( serverName );
|
|
|
|
serializer.Serialize( gameMode );
|
|
|
|
serializer.Serialize( gameMap );
|
|
|
|
SERIALIZE_BOOL( serializer, joinable );
|
|
|
|
serializer.Serialize( numPlayers );
|
|
|
|
serializer.Serialize( maxPlayers );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idStr serverName;
|
|
|
|
int8 gameMode;
|
|
|
|
int8 gameMap;
|
|
|
|
bool joinable;
|
|
|
|
int numPlayers;
|
|
|
|
int maxPlayers;
|
|
|
|
};
|
|
|
|
|
|
|
|
//------------------------
|
|
|
|
// voiceState_t
|
|
|
|
//------------------------
|
2012-11-28 15:47:07 +00:00
|
|
|
enum voiceState_t
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
VOICECHAT_STATE_NO_MIC,
|
|
|
|
VOICECHAT_STATE_MUTED_LOCAL,
|
|
|
|
VOICECHAT_STATE_MUTED_REMOTE,
|
|
|
|
VOICECHAT_STATE_MUTED_ALL,
|
|
|
|
VOICECHAT_STATE_NOT_TALKING,
|
|
|
|
VOICECHAT_STATE_TALKING,
|
|
|
|
VOICECHAT_STATE_TALKING_GLOBAL,
|
|
|
|
NUM_VOICECHAT_STATE
|
|
|
|
};
|
|
|
|
|
|
|
|
//------------------------
|
|
|
|
// voiceStateDisplay_t
|
|
|
|
//------------------------
|
2012-11-28 15:47:07 +00:00
|
|
|
enum voiceStateDisplay_t
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
VOICECHAT_DISPLAY_NONE,
|
|
|
|
VOICECHAT_DISPLAY_NOTTALKING,
|
|
|
|
VOICECHAT_DISPLAY_TALKING,
|
|
|
|
VOICECHAT_DISPLAY_TALKING_GLOBAL,
|
|
|
|
VOICECHAT_DISPLAY_MUTED,
|
|
|
|
VOICECHAT_DISPLAY_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
static const int QOS_RESULT_CRAPPY = 200;
|
|
|
|
static const int QOS_RESULT_WEAK = 100;
|
|
|
|
static const int QOS_RESULT_GOOD = 50;
|
|
|
|
static const int QOS_RESULT_GREAT = 0;
|
|
|
|
|
|
|
|
//------------------------
|
|
|
|
// qosState_t
|
|
|
|
//------------------------
|
2012-11-28 15:47:07 +00:00
|
|
|
enum qosState_t
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
QOS_STATE_CRAPPY = 1,
|
|
|
|
QOS_STATE_WEAK,
|
|
|
|
QOS_STATE_GOOD,
|
|
|
|
QOS_STATE_GREAT,
|
|
|
|
QOS_STATE_MAX,
|
|
|
|
};
|
|
|
|
|
|
|
|
//------------------------
|
|
|
|
// leaderboardDisplayError_t
|
|
|
|
//------------------------
|
2012-11-28 15:47:07 +00:00
|
|
|
enum leaderboardDisplayError_t
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
LEADERBOARD_DISPLAY_ERROR_NONE,
|
|
|
|
LEADERBOARD_DISPLAY_ERROR_FAILED, // General error occurred
|
|
|
|
LEADERBOARD_DISPLAY_ERROR_NOT_ONLINE, // No longer online
|
|
|
|
LEADERBOARD_DISPLAY_ERROR_NOT_RANKED, // Attempting to view a "My Score" leaderboard you aren't ranked on
|
|
|
|
LEADERBOARD_DISPLAY_ERROR_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
================================================
|
|
|
|
lobbyUserID_t
|
|
|
|
================================================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
struct lobbyUserID_t
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
lobbyUserID_t() : lobbyType( 0xFF ) {}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
explicit lobbyUserID_t( localUserHandle_t localUser_, byte lobbyType_ ) : localUserHandle( localUser_ ), lobbyType( lobbyType_ ) {}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
bool operator == ( const lobbyUserID_t& other ) const
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return localUserHandle == other.localUserHandle && lobbyType == other.lobbyType; // Lobby type must match
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
bool operator != ( const lobbyUserID_t& other ) const
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return !( *this == other );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
bool operator < ( const lobbyUserID_t& other ) const
|
|
|
|
{
|
|
|
|
if( localUserHandle == other.localUserHandle )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return lobbyType < other.lobbyType; // Lobby type tie breaker
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return localUserHandle < other.localUserHandle;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
bool CompareIgnoreLobbyType( const lobbyUserID_t& other ) const
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return localUserHandle == other.localUserHandle;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
localUserHandle_t GetLocalUserHandle() const
|
|
|
|
{
|
|
|
|
return localUserHandle;
|
|
|
|
}
|
|
|
|
byte GetLobbyType() const
|
|
|
|
{
|
|
|
|
return lobbyType;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsValid() const
|
|
|
|
{
|
|
|
|
return localUserHandle.IsValid() && lobbyType != 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WriteToMsg( idBitMsg& msg )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
localUserHandle.WriteToMsg( msg );
|
|
|
|
msg.WriteByte( lobbyType );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
void ReadFromMsg( const idBitMsg& msg )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
localUserHandle.ReadFromMsg( msg );
|
|
|
|
lobbyType = msg.ReadByte();
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
void Serialize( idSerializer& ser );
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
private:
|
|
|
|
localUserHandle_t localUserHandle;
|
|
|
|
byte lobbyType;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
================================================
|
|
|
|
idLobbyBase
|
|
|
|
================================================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
class idLobbyBase
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
|
|
|
// General lobby functionality
|
|
|
|
virtual bool IsHost() const = 0;
|
|
|
|
virtual bool IsPeer() const = 0;
|
|
|
|
virtual bool HasActivePeers() const = 0;
|
|
|
|
virtual int GetNumLobbyUsers() const = 0;
|
|
|
|
virtual int GetNumActiveLobbyUsers() const = 0;
|
|
|
|
virtual bool IsLobbyUserConnected( int index ) const = 0;
|
|
|
|
|
|
|
|
virtual lobbyUserID_t GetLobbyUserIdByOrdinal( int userIndex ) const = 0;
|
|
|
|
virtual int GetLobbyUserIndexFromLobbyUserID( lobbyUserID_t lobbyUserID ) const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
virtual void SendReliable( int type, idBitMsg& msg, bool callReceiveReliable = true, peerMask_t sessionUserMask = MAX_UNSIGNED_TYPE( peerMask_t ) ) = 0;
|
|
|
|
virtual void SendReliableToLobbyUser( lobbyUserID_t lobbyUserID, int type, idBitMsg& msg ) = 0;
|
|
|
|
virtual void SendReliableToHost( int type, idBitMsg& msg ) = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Lobby user access
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual const char* GetLobbyUserName( lobbyUserID_t lobbyUserID ) const = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void KickLobbyUser( lobbyUserID_t lobbyUserID ) = 0;
|
|
|
|
virtual bool IsLobbyUserValid( lobbyUserID_t lobbyUserID ) const = 0;
|
|
|
|
virtual bool IsLobbyUserLoaded( lobbyUserID_t lobbyUserID ) const = 0;
|
|
|
|
virtual bool LobbyUserHasFirstFullSnap( lobbyUserID_t lobbyUserID ) const = 0;
|
|
|
|
virtual void EnableSnapshotsForLobbyUser( lobbyUserID_t lobbyUserID ) = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int GetLobbyUserSkinIndex( lobbyUserID_t lobbyUserID ) const = 0;
|
|
|
|
virtual bool GetLobbyUserWeaponAutoReload( lobbyUserID_t lobbyUserID ) const = 0;
|
|
|
|
virtual bool GetLobbyUserWeaponAutoSwitch( lobbyUserID_t lobbyUserID ) const = 0;
|
|
|
|
virtual int GetLobbyUserLevel( lobbyUserID_t lobbyUserID ) const = 0;
|
|
|
|
virtual int GetLobbyUserQoS( lobbyUserID_t lobbyUserID ) const = 0;
|
|
|
|
virtual int GetLobbyUserTeam( lobbyUserID_t lobbyUserID ) const = 0;
|
|
|
|
virtual bool SetLobbyUserTeam( lobbyUserID_t lobbyUserID, int teamNumber ) = 0;
|
|
|
|
virtual int GetLobbyUserPartyToken( lobbyUserID_t lobbyUserID ) const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idPlayerProfile* GetProfileFromLobbyUser( lobbyUserID_t lobbyUserID ) = 0;
|
|
|
|
virtual idLocalUser* GetLocalUserFromLobbyUser( lobbyUserID_t lobbyUserID ) = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int GetNumLobbyUsersOnTeam( int teamNumber ) const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int PeerIndexFromLobbyUser( lobbyUserID_t lobbyUserID ) const = 0;
|
|
|
|
virtual int GetPeerTimeSinceLastPacket( int peerIndex ) const = 0;
|
|
|
|
virtual int PeerIndexForHost() const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
virtual lobbyUserID_t AllocLobbyUserSlotForBot( const char* botName ) = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void RemoveBotFromLobbyUserList( lobbyUserID_t lobbyUserID ) = 0;
|
|
|
|
virtual bool GetLobbyUserIsBot( lobbyUserID_t lobbyUserID ) const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
virtual const char* GetHostUserName() const = 0;
|
|
|
|
virtual const idMatchParameters& GetMatchParms() const = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual bool IsLobbyFull() const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Peer access
|
|
|
|
virtual bool EnsureAllPeersHaveBaseState() = 0;
|
|
|
|
virtual bool AllPeersInGame() const = 0;
|
|
|
|
virtual int GetNumConnectedPeers() const = 0;
|
|
|
|
virtual int GetNumConnectedPeersInGame() const = 0;
|
|
|
|
virtual int PeerIndexOnHost() const = 0;
|
|
|
|
virtual bool IsPeerDisconnected( int peerIndex ) const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Snapshots
|
|
|
|
virtual bool AllPeersHaveStaleSnapObj( int objId ) = 0;
|
|
|
|
virtual bool AllPeersHaveExpectedSnapObj( int objId ) = 0;
|
|
|
|
virtual void RefreshSnapObj( int objId ) = 0;
|
|
|
|
virtual void MarkSnapObjDeleted( int objId ) = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void AddSnapObjTemplate( int objID, idBitMsg& msg ) = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Debugging
|
|
|
|
virtual void DrawDebugNetworkHUD() const = 0;
|
|
|
|
virtual void DrawDebugNetworkHUD2() const = 0;
|
|
|
|
virtual void DrawDebugNetworkHUD_ServerSnapshotMetrics( bool draw ) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
================================================
|
2012-11-28 15:47:07 +00:00
|
|
|
idSession
|
2012-11-26 18:58:24 +00:00
|
|
|
================================================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
class idSession
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
enum sessionState_t
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
PRESS_START,
|
|
|
|
IDLE,
|
|
|
|
SEARCHING,
|
|
|
|
CONNECTING,
|
|
|
|
PARTY_LOBBY,
|
|
|
|
GAME_LOBBY,
|
|
|
|
LOADING,
|
|
|
|
INGAME,
|
|
|
|
BUSY,
|
|
|
|
MAX_STATES
|
|
|
|
};
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
enum sessionOption_t
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
OPTION_LEAVE_WITH_PARTY = BIT( 0 ), // As a party leader, whether or not to drag your party members with you when you leave a game lobby
|
|
|
|
OPTION_ALL = 0xFFFFFFFF
|
|
|
|
};
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
idSession() :
|
|
|
|
signInManager( NULL ),
|
|
|
|
saveGameManager( NULL ),
|
|
|
|
achievementSystem( NULL ),
|
|
|
|
dedicatedServerSearch( NULL ) { }
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual ~idSession();
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void Initialize() = 0;
|
|
|
|
virtual void Shutdown() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void InitializeSoundRelatedSystems() = 0;
|
|
|
|
virtual void ShutdownSoundRelatedSystems() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
2012-11-28 15:47:07 +00:00
|
|
|
// Lobby management
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void CreatePartyLobby( const idMatchParameters& parms_ ) = 0;
|
|
|
|
virtual void FindOrCreateMatch( const idMatchParameters& parms_ ) = 0;
|
|
|
|
virtual void CreateMatch( const idMatchParameters& parms_ ) = 0;
|
|
|
|
virtual void CreateGameStateLobby( const idMatchParameters& parms_ ) = 0;
|
|
|
|
virtual void UpdateMatchParms( const idMatchParameters& parms_ ) = 0;
|
|
|
|
virtual void UpdatePartyParms( const idMatchParameters& parms_ ) = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void StartMatch() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void EndMatch( bool premature = false ) = 0; // Meant for host to end match gracefully, go back to lobby, tally scores, etc
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void MatchFinished() = 0; // this is for when the game is over before we go back to lobby. Need this incase the host leaves during this time
|
|
|
|
virtual void QuitMatch() = 0; // Meant for host or peer to quit the match before it ends, will instigate host migration, etc
|
|
|
|
virtual void QuitMatchToTitle() = 0; // Will forcefully quit the match and return to the title screen.
|
|
|
|
virtual void SetSessionOption( sessionOption_t option ) = 0;
|
|
|
|
virtual void ClearSessionOption( sessionOption_t option ) = 0;
|
|
|
|
virtual sessionState_t GetBackState() = 0;
|
|
|
|
virtual void Cancel() = 0;
|
|
|
|
virtual void MoveToPressStart() = 0;
|
|
|
|
virtual void FinishDisconnect() = 0;
|
|
|
|
virtual void LoadingFinished() = 0;
|
|
|
|
virtual bool IsCurrentLobbyMigrating() const = 0;
|
|
|
|
virtual bool IsLosingConnectionToHost() const = 0;
|
|
|
|
virtual bool WasMigrationGame() const = 0;
|
|
|
|
virtual bool ShouldRelaunchMigrationGame() const = 0;
|
|
|
|
virtual bool WasGameLobbyCoalesced() const = 0;
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool GetMigrationGameData( idBitMsg& msg, bool reading ) = 0;
|
|
|
|
virtual bool GetMigrationGameDataUser( lobbyUserID_t lobbyUserID, idBitMsg& msg, bool reading ) = 0;
|
|
|
|
|
|
|
|
virtual bool GetMatchParamUpdate( int& peer, int& msg ) = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void Pump() = 0;
|
|
|
|
virtual void ProcessSnapAckQueue() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void InviteFriends() = 0;
|
|
|
|
virtual void InviteParty() = 0;
|
|
|
|
virtual void ShowPartySessions() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual bool IsPlatformPartyInLobby() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Lobby user/peer access
|
|
|
|
// The party and game lobby are the two platform lobbies that notify the backends (Steam/PSN/LIVE of changes)
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idLobbyBase& GetPartyLobbyBase() = 0;
|
|
|
|
virtual idLobbyBase& GetGameLobbyBase() = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Game state lobby is the lobby used while in-game. It is so the dedicated server can host this lobby
|
|
|
|
// and have all platform clients join. It does NOT notify the backends of changes, it's purely for the dedicated
|
|
|
|
// server to be able to host the in-game lobby.
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idLobbyBase& GetActingGameStateLobbyBase() = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// GetActivePlatformLobbyBase will return either the game or party lobby, it won't return the game state lobby
|
|
|
|
// This function is generally used for menus, in-game code should refer to GetActingGameStateLobby
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual idLobbyBase& GetActivePlatformLobbyBase() = 0;
|
|
|
|
|
|
|
|
virtual idLobbyBase& GetLobbyFromLobbyUserID( lobbyUserID_t lobbyUserID ) = 0;
|
|
|
|
|
|
|
|
virtual idPlayerProfile* GetProfileFromMasterLocalUser() = 0;
|
|
|
|
|
|
|
|
virtual bool ProcessInputEvent( const sysEvent_t* ev ) = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual float GetUpstreamDropRate() = 0;
|
|
|
|
virtual float GetUpstreamQueueRate() = 0;
|
|
|
|
virtual int GetQueuedBytes() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int GetLoadingID() = 0;
|
|
|
|
virtual bool IsAboutToLoad() const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
virtual const char* GetLocalUserName( int i ) const = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual sessionState_t GetState() const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual const char* GetStateString() const = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int NumServers() const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void ListServers( const idCallback& callback ) = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void CancelListServers() = 0;
|
|
|
|
virtual void ConnectToServer( int i ) = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual const serverInfo_t* ServerInfo( int i ) const = 0;
|
|
|
|
virtual const idList< idStr >* ServerPlayerList( int i ) = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void ShowServerGamerCardUI( int i ) = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void ShowOnlineSignin() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void DropClient( int peerNum, int lobbyType ) = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
virtual void JoinAfterSwap( void* joinID ) = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
// Downloadable Content
|
|
|
|
//=====================================================================================================
|
|
|
|
virtual void EnumerateDownloadableContent() = 0;
|
|
|
|
virtual int GetNumContentPackages() const = 0;
|
|
|
|
virtual int GetContentPackageID( int contentIndex ) const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual const char* GetContentPackagePath( int contentIndex ) const = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int GetContentPackageIndexForID( int contentID ) const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void ShowSystemMarketplaceUI() const = 0;
|
|
|
|
virtual bool GetSystemMarketplaceHasNewContent() const = 0;
|
|
|
|
virtual void SetSystemMarketplaceHasNewContent( bool hasNewContent ) = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
// Title Storage Vars
|
|
|
|
//=====================================================================================================
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual float GetTitleStorageFloat( const char* name, float defaultFloat ) const = 0;
|
|
|
|
virtual int GetTitleStorageInt( const char* name, int defaultInt ) const = 0;
|
|
|
|
virtual bool GetTitleStorageBool( const char* name, bool defaultBool ) const = 0;
|
|
|
|
virtual const char* GetTitleStorageString( const char* name, const char* defaultString ) const = 0;
|
|
|
|
|
|
|
|
virtual bool GetTitleStorageFloat( const char* name, float defaultFloat, float& out ) const
|
|
|
|
{
|
|
|
|
out = defaultFloat;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
virtual bool GetTitleStorageInt( const char* name, int defaultInt, int& out ) const
|
|
|
|
{
|
|
|
|
out = defaultInt;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
virtual bool GetTitleStorageBool( const char* name, bool defaultBool, bool& out ) const
|
|
|
|
{
|
|
|
|
out = defaultBool;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
virtual bool GetTitleStorageString( const char* name, const char* defaultString, const char** out ) const
|
|
|
|
{
|
|
|
|
if( out != NULL )
|
|
|
|
{
|
|
|
|
*out = defaultString;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual bool IsTitleStorageLoaded() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
// Leaderboard
|
|
|
|
//=====================================================================================================
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void LeaderboardUpload( lobbyUserID_t lobbyUserID, const leaderboardDefinition_t* leaderboard, const column_t* stats, const idFile_Memory* attachment = NULL ) = 0;
|
|
|
|
virtual void LeaderboardDownload( int sessionUserIndex, const leaderboardDefinition_t* leaderboard, int startingRank, int numRows, const idLeaderboardCallback& callback ) = 0;
|
|
|
|
virtual void LeaderboardDownloadAttachment( int sessionUserIndex, const leaderboardDefinition_t* leaderboard, int64 attachmentID ) = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void LeaderboardFlush() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
// Scoring (currently just for TrueSkill)
|
|
|
|
//=====================================================================================================
|
|
|
|
virtual void SetLobbyUserRelativeScore( lobbyUserID_t lobbyUserID, int relativeScore, int team ) = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
// Savegames
|
|
|
|
//
|
|
|
|
// Default async implementations, saves to a folder, uses game.details file to describe each save.
|
|
|
|
// Files saved are up to the game and provide through a callback mechanism. If you want to be notified when
|
|
|
|
// one of these operations have completed, either modify the framework's completedCallback of each of the
|
|
|
|
// savegame processors or create your own processors and execute with the savegameManager.
|
|
|
|
//=====================================================================================================
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual saveGameHandle_t SaveGameSync( const char* name, const saveFileEntryList_t& files, const idSaveGameDetails& description ) = 0;
|
|
|
|
virtual saveGameHandle_t SaveGameAsync( const char* name, const saveFileEntryList_t& files, const idSaveGameDetails& description ) = 0;
|
|
|
|
virtual saveGameHandle_t LoadGameSync( const char* name, saveFileEntryList_t& files ) = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual saveGameHandle_t EnumerateSaveGamesSync() = 0;
|
|
|
|
virtual saveGameHandle_t EnumerateSaveGamesAsync() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual saveGameHandle_t DeleteSaveGameSync( const char* name ) = 0;
|
|
|
|
virtual saveGameHandle_t DeleteSaveGameAsync( const char* name ) = 0;
|
|
|
|
|
|
|
|
virtual bool IsSaveGameCompletedFromHandle( const saveGameHandle_t& handle ) const = 0;
|
|
|
|
virtual void CancelSaveGameWithHandle( const saveGameHandle_t& handle ) = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Needed for main menu integration
|
|
|
|
virtual bool IsEnumerating() const = 0;
|
|
|
|
virtual saveGameHandle_t GetEnumerationHandle() const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Returns the known list of savegames, must first enumerate for the savegames ( via session->Enumerate() )
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual const saveGameDetailsList_t& GetEnumeratedSavegames() const = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
// These are on session and not idGame so it can persist across game deallocations
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void SetCurrentSaveSlot( const char* slotName ) = 0;
|
|
|
|
virtual const char* GetCurrentSaveSlot() const = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Error checking
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual bool IsDLCAvailable( const char* mapName ) = 0;
|
|
|
|
virtual bool LoadGameCheckDiscNumber( idSaveLoadParms& parms ) = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
// GamerCard UI
|
|
|
|
//=====================================================================================================
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void ShowLobbyUserGamerCardUI( lobbyUserID_t lobbyUserID ) = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
virtual void UpdateRichPresence() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
virtual void SendUsercmds( idBitMsg& msg ) = 0;
|
|
|
|
virtual void SendSnapshot( class idSnapShot& ss ) = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual int GetInputRouting( int inputRouting[ MAX_INPUT_DEVICES ] );
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void UpdateSignInManager() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
idSignInManagerBase& GetSignInManager()
|
|
|
|
{
|
|
|
|
return *signInManager;
|
|
|
|
}
|
|
|
|
idSaveGameManager& GetSaveGameManager()
|
|
|
|
{
|
|
|
|
return *saveGameManager;
|
|
|
|
}
|
|
|
|
idAchievementSystem& GetAchievementSystem()
|
|
|
|
{
|
|
|
|
return *achievementSystem;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HasSignInManager() const
|
|
|
|
{
|
|
|
|
return ( signInManager != NULL );
|
|
|
|
}
|
|
|
|
bool HasAchievementSystem() const
|
|
|
|
{
|
|
|
|
return ( achievementSystem != NULL );
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual bool IsSystemUIShowing() const = 0;
|
|
|
|
virtual void SetSystemUIShowing( bool show ) = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
// Voice chat
|
|
|
|
//=====================================================================================================
|
|
|
|
virtual voiceState_t GetLobbyUserVoiceState( lobbyUserID_t lobbyUserID ) = 0;
|
|
|
|
virtual voiceStateDisplay_t GetDisplayStateFromVoiceState( voiceState_t voiceState ) const = 0;
|
|
|
|
virtual void ToggleLobbyUserVoiceMute( lobbyUserID_t lobbyUserID ) = 0;
|
|
|
|
virtual void SetActiveChatGroup( int groupIndex ) = 0;
|
|
|
|
virtual void CheckVoicePrivileges() = 0;
|
|
|
|
virtual void SetVoiceGroupsToTeams() = 0;
|
|
|
|
virtual void ClearVoiceGroups() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
// Bandwidth / QoS checking
|
|
|
|
//=====================================================================================================
|
|
|
|
virtual bool StartOrContinueBandwidthChallenge( bool forceStart ) = 0;
|
|
|
|
virtual void DebugSetPeerSnaprate( int peerIndex, int snapRateMS ) = 0;
|
|
|
|
virtual float GetIncomingByteRate() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
// Invites
|
|
|
|
//=====================================================================================================
|
|
|
|
virtual void HandleBootableInvite( int64 lobbyId = 0 ) = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void HandleExitspawnInvite( const lobbyConnectInfo_t& connectInfo ) {}
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual void ClearBootableInvite() = 0;
|
|
|
|
virtual void ClearPendingInvite() = 0;
|
|
|
|
virtual bool HasPendingBootableInvite() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void SetDiscSwapMPInvite( void* parm ) = 0;
|
|
|
|
virtual void* GetDiscSwapMPInviteParms() = 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
virtual bool IsDiscSwapMPInviteRequested() const = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
//=====================================================================================================
|
|
|
|
// Notifications
|
|
|
|
//=====================================================================================================
|
|
|
|
// This is called when a LocalUser is signed in/out
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void OnLocalUserSignin( idLocalUser* user ) = 0;
|
|
|
|
virtual void OnLocalUserSignout( idLocalUser* user ) = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// This is called when the master LocalUser is signed in/out, these are called after OnLocalUserSignin/out()
|
|
|
|
virtual void OnMasterLocalUserSignout() = 0;
|
|
|
|
virtual void OnMasterLocalUserSignin() = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// After a local user has signed in and their profile has loaded
|
2012-11-28 15:47:07 +00:00
|
|
|
virtual void OnLocalUserProfileLoaded( idLocalUser* user ) = 0;
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
protected:
|
2012-11-28 15:47:07 +00:00
|
|
|
idSignInManagerBase* signInManager; // pointer so we can treat dynamically bind platform-specific impl
|
|
|
|
idSaveGameManager* saveGameManager;
|
|
|
|
idAchievementSystem* achievementSystem; // pointer so we can treat dynamically bind platform-specific impl
|
|
|
|
idDedicatedServerSearch* dedicatedServerSearch;
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idSession::idGetInputRouting
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
ID_INLINE int idSession::GetInputRouting( int inputRouting[ MAX_INPUT_DEVICES ] )
|
|
|
|
{
|
|
|
|
for( int i = 0; i < MAX_INPUT_DEVICES; i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
inputRouting[ i ] = -1;
|
|
|
|
}
|
|
|
|
inputRouting[0] = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
return 1;
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
extern idSession* session;
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
#endif // __SYS_SESSION_H__
|