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.
|
|
|
|
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
#pragma hdrstop
|
|
|
|
#include "../idlib/precompiled.h"
|
|
|
|
|
|
|
|
extern idCVar fs_savepath;
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idLocalUser::idLocalUser
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
idLocalUser::idLocalUser()
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
memset( joiningLobby, 0, sizeof( joiningLobby ) );
|
|
|
|
profileMgr.Init( this );
|
|
|
|
syncAchievementsRequested = 0;
|
|
|
|
}
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
void idLocalUser::Pump()
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// Pump the profile
|
|
|
|
GetProfileMgr().Pump();
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
if( GetProfileMgr().GetProfile() != NULL && GetProfileMgr().GetProfile()->GetState() == idPlayerProfile::IDLE )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// Pump achievements
|
2012-11-28 15:47:07 +00:00
|
|
|
if( syncAchievementsRequested )
|
|
|
|
{
|
|
|
|
if( session->GetAchievementSystem().IsInitialized() )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
session->GetAchievementSystem().SyncAchievementBits( this );
|
|
|
|
syncAchievementsRequested = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
session->GetAchievementSystem().Pump();
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Extra platform pump if necessary
|
|
|
|
PumpPlatform();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idLocalUser::IsStorageDeviceAvailable
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
bool idLocalUser::IsStorageDeviceAvailable() const
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return saveGame_enable.GetBool();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idLocalUser::ResetStorageDevice
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idLocalUser::ResetStorageDevice()
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idLocalUser::StorageSizeAvailable
|
|
|
|
========================
|
|
|
|
*/
|
2012-12-19 22:56:20 +00:00
|
|
|
// RB: disabled savegame and profile storage checks, because it fails sometimes without any clear reason
|
|
|
|
/*
|
2012-11-28 15:47:07 +00:00
|
|
|
bool idLocalUser::StorageSizeAvailable( uint64 minSizeInBytes, int64& neededBytes )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int64 size = Sys_GetDriveFreeSpaceInBytes( fs_savepath.GetString() );
|
2012-12-19 22:56:20 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
neededBytes = minSizeInBytes - size;
|
2012-11-28 15:47:07 +00:00
|
|
|
if( neededBytes < 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
neededBytes = 0;
|
|
|
|
}
|
2012-12-19 22:56:20 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return neededBytes == 0;
|
|
|
|
}
|
2012-12-19 22:56:20 +00:00
|
|
|
*/
|
|
|
|
// RB end
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idLocalUser::SetStatInt
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idLocalUser::SetStatInt( int s, int v )
|
|
|
|
{
|
|
|
|
idPlayerProfile* profile = GetProfile();
|
|
|
|
if( profile != NULL )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return profile->StatSetInt( s, v );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idLocalUser::SetStatFloat
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idLocalUser::SetStatFloat( int s, float v )
|
|
|
|
{
|
|
|
|
idPlayerProfile* profile = GetProfile();
|
|
|
|
if( profile != NULL )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return profile->StatSetFloat( s, v );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idLocalUser::GetStatInt
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
int idLocalUser::GetStatInt( int s )
|
|
|
|
{
|
|
|
|
const idPlayerProfile* profile = GetProfile();
|
|
|
|
|
|
|
|
if( profile != NULL && s >= 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return profile->StatGetInt( s );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
return 0;
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idLocalUser::GetStatFloat
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
float idLocalUser::GetStatFloat( int s )
|
|
|
|
{
|
|
|
|
const idPlayerProfile* profile = GetProfile();
|
|
|
|
|
|
|
|
if( profile != NULL )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return profile->StatGetFloat( s );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idLocalUser::LoadProfileSettings
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idLocalUser::LoadProfileSettings()
|
|
|
|
{
|
|
|
|
idPlayerProfile* profile = GetProfileMgr().GetProfile();
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Lazy instantiation
|
2012-11-28 15:47:07 +00:00
|
|
|
if( profile == NULL )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// Create a new profile
|
|
|
|
profile = idPlayerProfile::CreatePlayerProfile( GetInputDevice() );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
if( profile != NULL )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
profile->LoadSettings();
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
idLocalUser::SaveProfileSettings
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idLocalUser::SaveProfileSettings()
|
|
|
|
{
|
|
|
|
idPlayerProfile* profile = GetProfileMgr().GetProfile();
|
|
|
|
if( profile != NULL )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
profile->SaveSettings( true );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
========================
|
|
|
|
localUserHandle_t::Serialize
|
|
|
|
========================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void localUserHandle_t::Serialize( idSerializer& ser )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
ser.Serialize( handle );
|
|
|
|
}
|