mirror of
https://github.com/Team-Resurgent/XBMC4Xbox.git
synced 2026-08-15 11:18:13 -07:00
If ever adding the XBMC4Xbox source to GitHub use "git add -f -A" or it wont add all the files.
86 lines
1.9 KiB
C++
86 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) 2005-2013 Team XBMC
|
|
* http://xbmc.org
|
|
*
|
|
* This Program 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 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This Program 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 XBMC; see the file COPYING. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "InfoLoader.h"
|
|
#include "LocalizeStrings.h"
|
|
#include "JobManager.h"
|
|
#include "TimeUtils.h"
|
|
|
|
CInfoJob::CInfoJob(CInfoLoader *loader)
|
|
{
|
|
m_loader = loader;
|
|
}
|
|
|
|
bool CInfoJob::DoWork()
|
|
{
|
|
if (m_loader)
|
|
return m_loader->DoWork();
|
|
|
|
return false;
|
|
}
|
|
|
|
CInfoLoader::CInfoLoader(unsigned int timeToRefresh)
|
|
{
|
|
m_refreshTime = 0;
|
|
m_timeToRefresh = timeToRefresh;
|
|
m_busy = false;
|
|
}
|
|
|
|
CInfoLoader::~CInfoLoader()
|
|
{
|
|
}
|
|
|
|
void CInfoLoader::OnJobComplete(unsigned int jobID, bool success, CJob *job)
|
|
{
|
|
m_refreshTime = CTimeUtils::GetFrameTime() + m_timeToRefresh;
|
|
m_busy = false;
|
|
}
|
|
|
|
CStdString CInfoLoader::GetInfo(int info)
|
|
{
|
|
// Refresh if need be
|
|
if (m_refreshTime < CTimeUtils::GetFrameTime() && !m_busy)
|
|
{ // queue up the job
|
|
m_busy = true;
|
|
CJobManager::GetInstance().AddJob(new CInfoJob(this), this);
|
|
}
|
|
if (m_busy && CTimeUtils::GetFrameTime() - m_refreshTime > 1000)
|
|
{
|
|
return BusyInfo(info);
|
|
}
|
|
return TranslateInfo(info);
|
|
}
|
|
|
|
CStdString CInfoLoader::BusyInfo(int info) const
|
|
{
|
|
return g_localizeStrings.Get(503);
|
|
}
|
|
|
|
CStdString CInfoLoader::TranslateInfo(int info) const
|
|
{
|
|
return "";
|
|
}
|
|
|
|
void CInfoLoader::Refresh()
|
|
{
|
|
m_refreshTime = CTimeUtils::GetFrameTime();
|
|
}
|
|
|