204 lines
6.8 KiB
C++
204 lines
6.8 KiB
C++
#include "stdafx.h"
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
Class: RageTextureManager
|
|
|
|
Desc: See header.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Includes
|
|
//-----------------------------------------------------------------------------
|
|
#include "RageTextureManager.h"
|
|
#include "RageBitmapTexture.h"
|
|
#include "RageMovieTexture.h"
|
|
#include "RageUtil.h"
|
|
#include "RageLog.h"
|
|
#include "RageException.h"
|
|
|
|
RageTextureManager* TEXTUREMAN = NULL;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// constructor/destructor
|
|
//-----------------------------------------------------------------------------
|
|
RageTextureManager::RageTextureManager( RageDisplay* pScreen )
|
|
{
|
|
assert( pScreen != NULL );
|
|
m_pScreen = pScreen;
|
|
m_iMaxTextureSize = 2048; // infinite size
|
|
m_iTextureColorDepth = 16;
|
|
m_iSecondsBeforeUnload = 60*30; // 30 mins
|
|
}
|
|
|
|
RageTextureManager::~RageTextureManager()
|
|
{
|
|
for( std::map<CString, RageTexture*>::iterator i = m_mapPathToTexture.begin();
|
|
i != m_mapPathToTexture.end(); ++i)
|
|
{
|
|
RageTexture* pTexture = i->second;
|
|
if( pTexture->m_iRefCount )
|
|
LOG->Trace( "TEXTUREMAN LEAK: '%s', RefCount = %d.", i->first, pTexture->m_iRefCount );
|
|
SAFE_DELETE( pTexture );
|
|
}
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Load/Unload textures from disk
|
|
//-----------------------------------------------------------------------------
|
|
RageTexture* RageTextureManager::LoadTexture( CString sTexturePath, bool bForceReload, int iMipMaps, int iAlphaBits, bool bDither, bool bStretch )
|
|
{
|
|
sTexturePath.MakeLower();
|
|
|
|
// LOG->Trace( "RageTextureManager::LoadTexture(%s).", sTexturePath );
|
|
|
|
// holder for the new texture
|
|
RageTexture* pTexture;
|
|
|
|
// Convert the path to lowercase so that we don't load duplicates.
|
|
// Really, this does not solve the duplicate problem. We could have to copies
|
|
// of the same bitmap if there are equivalent but different paths
|
|
// (e.g. "Bitmaps\me.bmp" and "..\Rage PC Edition\Bitmaps\me.bmp" ).
|
|
|
|
std::map<CString, RageTexture*>::iterator p = m_mapPathToTexture.find(sTexturePath);
|
|
if(p != m_mapPathToTexture.end()) {
|
|
pTexture = p->second;
|
|
|
|
pTexture->m_iRefCount++;
|
|
if( bForceReload )
|
|
pTexture->Reload( m_iMaxTextureSize, m_iTextureColorDepth, iMipMaps, iAlphaBits, bDither, bStretch );
|
|
|
|
// LOG->Trace( "RageTextureManager: '%s' now has %d references.", sTexturePath, pTexture->m_iRefCount );
|
|
}
|
|
else // the texture is not already loaded
|
|
{
|
|
CString sDrive, sDir, sFName, sExt;
|
|
splitpath( false, sTexturePath, sDrive, sDir, sFName, sExt );
|
|
|
|
if( sExt == "avi" || sExt == "mpg" || sExt == "mpeg" )
|
|
pTexture = new RageMovieTexture( m_pScreen, sTexturePath, m_iMaxTextureSize, m_iTextureColorDepth, iMipMaps, iAlphaBits, bDither, bStretch );
|
|
else
|
|
pTexture = new RageBitmapTexture( m_pScreen, sTexturePath, m_iMaxTextureSize, m_iTextureColorDepth, iMipMaps, iAlphaBits, bDither, bStretch );
|
|
|
|
LOG->Trace( "RageTextureManager: Finished loading '%s'.", sTexturePath );
|
|
|
|
m_mapPathToTexture[sTexturePath] = pTexture;
|
|
}
|
|
|
|
// LOG->Trace( "Display: %.2f KB video memory left", DISPLAY->GetDevice()->GetAvailableTextureMem()/1000000.0f );
|
|
|
|
return pTexture;
|
|
}
|
|
|
|
|
|
bool RageTextureManager::IsTextureLoaded( CString sTexturePath )
|
|
{
|
|
sTexturePath.MakeLower();
|
|
|
|
return m_mapPathToTexture.find(sTexturePath) != m_mapPathToTexture.end();
|
|
}
|
|
|
|
void RageTextureManager::GCTextures()
|
|
{
|
|
/* If m_iSecondsBeforeUnload is 0, then we'll unload textures immediately when
|
|
* they're no longer needed, to use as little extra memory as possible, so don't
|
|
* bother checking for expired textures here. */
|
|
if(!m_iSecondsBeforeUnload) return;
|
|
|
|
static int timeLastGarbageCollect = time(NULL);
|
|
if( timeLastGarbageCollect+m_iSecondsBeforeUnload/2 > time(NULL) )
|
|
return;
|
|
|
|
// Search for old textures with refcount==0 to unload
|
|
LOG->Trace("Performing texture garbage collection");
|
|
timeLastGarbageCollect = time(NULL);
|
|
|
|
for( std::map<CString, RageTexture*>::iterator i = m_mapPathToTexture.begin();
|
|
i != m_mapPathToTexture.end(); )
|
|
{
|
|
std::map<CString, RageTexture*>::iterator j = i;
|
|
i++;
|
|
|
|
CString sPath = j->first;
|
|
RageTexture* pTexture = j->second;
|
|
if( pTexture->m_iRefCount==0 &&
|
|
pTexture->m_iTimeOfLastUnload+m_iSecondsBeforeUnload < time(NULL) )
|
|
{
|
|
SAFE_DELETE( pTexture ); // free the texture
|
|
m_mapPathToTexture.erase(j); // and remove the key in the map
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void RageTextureManager::UnloadTexture( CString sTexturePath )
|
|
{
|
|
sTexturePath.MakeLower();
|
|
|
|
// LOG->Trace( "RageTextureManager::UnloadTexture(%s).", sTexturePath );
|
|
|
|
if( sTexturePath == "" )
|
|
{
|
|
//LOG->Trace( "RageTextureManager::UnloadTexture(): tried to Unload a blank texture." );
|
|
return;
|
|
}
|
|
|
|
std::map<CString, RageTexture*>::iterator p = m_mapPathToTexture.find(sTexturePath);
|
|
if(p == m_mapPathToTexture.end())
|
|
throw RageException( "Tried to Unload texture '%s' that wasn't loaded.", sTexturePath );
|
|
|
|
RageTexture* pTexture = p->second;
|
|
pTexture->m_iRefCount--;
|
|
pTexture->m_iTimeOfLastUnload = time(NULL);
|
|
ASSERT( pTexture->m_iRefCount >= 0 );
|
|
|
|
/* Always unload movies, so we don't waste time decoding.
|
|
*
|
|
* Actually, multiple refs to a movie won't work; they should play independently,
|
|
* but they'll actually share settings. Not worth fixing, since we don't currently
|
|
* using movies for anything except BGAs (though we could).
|
|
*
|
|
* Also, if texture caching is off, just remove it now instead of doing
|
|
* garbage collection. */
|
|
if( pTexture->m_iRefCount == 0 &&
|
|
(pTexture->IsAMovie() || !m_iSecondsBeforeUnload ))
|
|
{
|
|
// LOG->Trace( "RageTextureManager: '%s' will be deleted. It has %d references.", sTexturePath, pTexture->m_iRefCount );
|
|
SAFE_DELETE( pTexture ); // free the texture
|
|
m_mapPathToTexture.erase(p); // and remove the key in the map
|
|
}
|
|
|
|
GCTextures();
|
|
|
|
//LOG->Trace( "RageTextureManager: '%s' will not be deleted. It still has %d references.", sTexturePath, pTexture->m_iRefCount );
|
|
}
|
|
|
|
void RageTextureManager::ReloadAll()
|
|
{
|
|
for( std::map<CString, RageTexture*>::iterator i = m_mapPathToTexture.begin();
|
|
i != m_mapPathToTexture.end(); ++i)
|
|
{
|
|
RageTexture* pTexture = i->second;
|
|
|
|
// this is not entirely correct. Hints are lost! XXX
|
|
pTexture->Reload( m_iMaxTextureSize, m_iTextureColorDepth, 0 );
|
|
}
|
|
}
|
|
|
|
void RageTextureManager::SetPrefs( int iMaxSize, int iTextureColorDepth, int iSecondsBeforeUnload )
|
|
{
|
|
m_iSecondsBeforeUnload = iSecondsBeforeUnload;
|
|
if( iMaxSize == m_iMaxTextureSize && iTextureColorDepth == m_iTextureColorDepth )
|
|
return;
|
|
m_iMaxTextureSize = iMaxSize;
|
|
m_iTextureColorDepth = iTextureColorDepth;
|
|
ASSERT( m_iMaxTextureSize >= 64 );
|
|
ASSERT( m_iTextureColorDepth >= 16 );
|
|
ReloadAll();
|
|
}
|