usbloadergx/source/usbloader/GameList.cpp

263 lines
7.4 KiB
C++
Raw Normal View History

/****************************************************************************
2010-09-24 02:48:03 +02:00
* Copyright (C) 2010
* by Dimok
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any
* damages arising from the use of this software.
*
* Permission is granted to anyone to use this software for any
* purpose, including commercial applications, and to alter it and
* redistribute it freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you
* must not claim that you wrote the original software. If you use
* this software in a product, an acknowledgment in the product
* documentation would be appreciated but is not required.
*
* 2. Altered source versions must be plainly marked as such, and
* must not be misrepresented as being the original software.
*
* 3. This notice may not be removed or altered from any source
* distribution.
***************************************************************************/
#include <algorithm>
#include <string>
#include <malloc.h>
#include "usbloader/wbfs.h"
#include "settings/newtitles.h"
#include "settings/CSettings.h"
#include "settings/CGameStatistics.h"
#include "xml/xml.h"
#include "FreeTypeGX.h"
#include "GameList.h"
#include "memory.h"
GameList gameList;
GameList::GameList()
{
}
void GameList::clear()
{
FullGameList.clear();
FilteredList.clear();
//! Clear memory of the vector completely
2010-09-24 02:48:03 +02:00
std::vector<struct discHdr *>().swap(FilteredList);
std::vector<struct discHdr>().swap(FullGameList);
}
2010-09-24 02:48:03 +02:00
struct discHdr * GameList::at(int i)
{
2010-09-24 02:48:03 +02:00
if (i < 0 || i >= (int) FilteredList.size()) return NULL;
return FilteredList[i];
}
int GameList::ReadGameList()
{
FullGameList.clear();
FilteredList.clear();
// Retrieve all stuff from WBFS
u32 cnt;
2010-09-24 02:48:03 +02:00
int ret = WBFS_GetCount(&cnt);
if (ret < 0) return -1;
/* Buffer length */
2010-09-24 02:48:03 +02:00
u32 len = sizeof(struct discHdr) * cnt;
/* Allocate memory */
2010-09-24 02:48:03 +02:00
struct discHdr *buffer = (struct discHdr *) allocate_memory( len );
if (!buffer) return -1;
/* Clear buffer */
2010-09-24 02:48:03 +02:00
memset(buffer, 0, len);
/* Get header list */
2010-09-24 02:48:03 +02:00
ret = WBFS_GetHeaders(buffer, cnt, sizeof(struct discHdr));
if (ret < 0)
{
2010-09-24 02:48:03 +02:00
if (buffer) free(buffer);
return -1;
}
2010-09-24 02:48:03 +02:00
FullGameList.resize(cnt);
memcpy(&FullGameList[0], buffer, len);
2010-09-24 02:48:03 +02:00
free(buffer);
return LoadUnfiltered();
}
static bool WCharSortCallback(const wchar_t char1, const wchar_t char2)
{
2010-09-24 02:48:03 +02:00
if (char2 == 0) return true;
if (char1 == 0) return false;
return char2 > char1;
}
2010-09-24 02:48:03 +02:00
int GameList::FilterList(const wchar_t * gameFilter)
{
2010-09-24 02:48:03 +02:00
if (FullGameList.size() == 0) ReadGameList();
if (gameFilter) GameFilter.assign(gameFilter);
FilteredList.clear();
AvailableSearchChars.clear();
2010-09-24 02:48:03 +02:00
for (u32 i = 0; i < FullGameList.size(); ++i)
{
struct discHdr *header = &FullGameList[i];
/* Register game */
2010-09-24 02:48:03 +02:00
NewTitles::Instance()->CheckGame(header->id);
/* Filters */
2010-10-27 16:45:27 +02:00
if (Settings.GameSort == SORT_RANKING)
{
GameStatus * GameStats = GameStatistics.GetGameStatus(header->id);
if (!GameStats || GameStats->FavoriteRank == 0) continue;
}
//ignore uLoader cfg "iso". i was told it is "__CFG_" but not confirmed
2010-09-24 02:48:03 +02:00
if (strncasecmp((char*) header->id, "__CFG_", 6) == 0) continue;
2010-09-24 02:48:03 +02:00
if (Settings.parentalcontrol && !Settings.godmode) if (get_block(header) >= Settings.parentalcontrol) continue;
/* Rating based parental control method */
2010-09-24 02:48:03 +02:00
if (Settings.parentalcontrol == 0 && Settings.godmode == 0 && Settings.Parental.enabled == 1)
{
// Check game rating in WiiTDB, since the default Wii parental control setting is enabled
2010-09-24 02:48:03 +02:00
s32 rating = GetRatingForGame((char *) header->id);
if ((rating != -1 && rating > Settings.Parental.rating) || (rating == -1 && get_pegi_block(header)
> Settings.Parental.rating))
{
continue;
}
}
/* Game lock based parental control method */
// If game lock is set to "1 (Unlocked Games Only)" and the game is locked, then skip
if(Settings.lockedgames == 1 && Settings.godmode == 0 && GameStatistics.GetLockStatus(header->id) == 1)
continue;
2010-09-24 02:48:03 +02:00
wchar_t *gameName = charToWideChar(get_title(header));
2010-09-24 02:48:03 +02:00
if (gameName && *GameFilter.c_str())
{
2010-09-24 02:48:03 +02:00
if (wcsnicmp(gameName, GameFilter.c_str(), GameFilter.size()) != 0)
{
2010-09-24 02:48:03 +02:00
delete[] gameName;
continue;
}
}
2010-09-24 02:48:03 +02:00
if (gameName)
{
2010-09-24 02:48:03 +02:00
if (wcslen(gameName) > GameFilter.size() && AvailableSearchChars.find(gameName[GameFilter.size()])
== std::string::npos) AvailableSearchChars.push_back(gameName[GameFilter.size()]);
delete[] gameName;
}
2010-09-24 02:48:03 +02:00
FilteredList.push_back(header);
}
NewTitles::Instance()->Save();
2010-09-24 02:48:03 +02:00
AvailableSearchChars.push_back(L'\0');
2010-09-24 02:48:03 +02:00
if (FilteredList.size() < 2) AvailableSearchChars.clear();
SortList();
return FilteredList.size();
}
int GameList::LoadUnfiltered()
{
2010-09-24 02:48:03 +02:00
if (FullGameList.size() == 0) ReadGameList();
GameFilter.clear();
AvailableSearchChars.clear();
FilteredList.clear();
2010-09-24 02:48:03 +02:00
for (u32 i = 0; i < FullGameList.size(); ++i)
{
struct discHdr *header = &FullGameList[i];
/* Register game */
2010-09-24 02:48:03 +02:00
NewTitles::Instance()->CheckGame(header->id);
2010-09-24 02:48:03 +02:00
wchar_t *gameName = charToWideChar(get_title(header));
if (gameName)
{
2010-09-24 02:48:03 +02:00
if (wcslen(gameName) > GameFilter.size() && AvailableSearchChars.find(gameName[GameFilter.size()])
== std::string::npos) AvailableSearchChars.push_back(gameName[GameFilter.size()]);
delete[] gameName;
}
2010-09-24 02:48:03 +02:00
FilteredList.push_back(header);
}
NewTitles::Instance()->Save();
2010-09-24 02:48:03 +02:00
AvailableSearchChars.push_back(L'\0');
2010-09-24 02:48:03 +02:00
if (FilteredList.size() < 2) AvailableSearchChars.clear();
SortList();
return FilteredList.size();
}
void GameList::SortList()
{
2010-09-24 02:48:03 +02:00
if (FilteredList.size() < 2) return;
2010-10-27 16:45:27 +02:00
if (Settings.GameSort == SORT_PLAYCOUNT)
{
2010-09-24 02:48:03 +02:00
std::sort(FilteredList.begin(), FilteredList.end(), PlaycountSortCallback);
}
2010-10-27 16:45:27 +02:00
else if(Settings.GameSort == SORT_RANKING)
{
2010-09-24 02:48:03 +02:00
std::sort(FilteredList.begin(), FilteredList.end(), FavoriteSortCallback);
}
else
{
2010-09-24 02:48:03 +02:00
std::sort(FilteredList.begin(), FilteredList.end(), NameSortCallback);
}
2010-09-24 02:48:03 +02:00
if (AvailableSearchChars.size() > 1) std::sort(AvailableSearchChars.begin(), AvailableSearchChars.end(),
WCharSortCallback);
}
bool GameList::NameSortCallback(const struct discHdr *a, const struct discHdr *b)
{
return (strcasecmp(get_title((struct discHdr *) a), get_title((struct discHdr *) b)) < 0);
}
bool GameList::PlaycountSortCallback(const struct discHdr *a, const struct discHdr *b)
{
int count1 = GameStatistics.GetPlayCount(a->id);
int count2 = GameStatistics.GetPlayCount(b->id);
2010-09-24 02:48:03 +02:00
if (count1 == count2) return NameSortCallback(a, b);
return (count1 > count2);
}
bool GameList::FavoriteSortCallback(const struct discHdr *a, const struct discHdr *b)
{
int fav1 = GameStatistics.GetFavoriteRank(a->id);
int fav2 = GameStatistics.GetFavoriteRank(b->id);
2010-09-24 02:48:03 +02:00
if (fav1 == fav2) return NameSortCallback(a, b);
return (fav1 > fav2);
}