mirror of
https://github.com/Team-Resurgent/XBMC4Xbox.git
synced 2026-08-15 11:18:13 -07:00
67 lines
1.8 KiB
C++
67 lines
1.8 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 "DirectoryNodeAlbumCompilations.h"
|
||
|
|
#include "QueryParams.h"
|
||
|
|
#include "music/MusicDatabase.h"
|
||
|
|
#include "LocalizeStrings.h"
|
||
|
|
|
||
|
|
using namespace XFILE::MUSICDATABASEDIRECTORY;
|
||
|
|
|
||
|
|
CDirectoryNodeAlbumCompilations::CDirectoryNodeAlbumCompilations(const CStdString& strName, CDirectoryNode* pParent)
|
||
|
|
: CDirectoryNode(NODE_TYPE_ALBUM_COMPILATIONS, strName, pParent)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
NODE_TYPE CDirectoryNodeAlbumCompilations::GetChildType() const
|
||
|
|
{
|
||
|
|
if (GetName()=="-1")
|
||
|
|
return NODE_TYPE_ALBUM_COMPILATIONS_SONGS;
|
||
|
|
|
||
|
|
return NODE_TYPE_SONG;
|
||
|
|
}
|
||
|
|
|
||
|
|
CStdString CDirectoryNodeAlbumCompilations::GetLocalizedName() const
|
||
|
|
{
|
||
|
|
if (GetID() == -1)
|
||
|
|
return g_localizeStrings.Get(15102); // All Albums
|
||
|
|
CMusicDatabase db;
|
||
|
|
if (db.Open())
|
||
|
|
return db.GetAlbumById(GetID());
|
||
|
|
return "";
|
||
|
|
}
|
||
|
|
|
||
|
|
bool CDirectoryNodeAlbumCompilations::GetContent(CFileItemList& items) const
|
||
|
|
{
|
||
|
|
CMusicDatabase musicdatabase;
|
||
|
|
if (!musicdatabase.Open())
|
||
|
|
return false;
|
||
|
|
|
||
|
|
CQueryParams params;
|
||
|
|
CollectQueryParams(params);
|
||
|
|
|
||
|
|
bool bSuccess=musicdatabase.GetVariousArtistsAlbums(BuildPath(), items);
|
||
|
|
|
||
|
|
musicdatabase.Close();
|
||
|
|
|
||
|
|
return bSuccess;
|
||
|
|
}
|