2011-06-03 22:31:09 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2011
|
|
|
|
* 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 "CategorySelectPrompt.hpp"
|
|
|
|
#include "settings/CGameCategories.hpp"
|
|
|
|
#include "settings/CSettings.h"
|
|
|
|
#include "language/gettext.h"
|
|
|
|
#include "utils/StringTools.h"
|
2011-06-14 19:53:19 +02:00
|
|
|
#include "gecko.h"
|
2011-06-03 22:31:09 +02:00
|
|
|
|
|
|
|
CategorySelectPrompt::CategorySelectPrompt(struct discHdr * header)
|
|
|
|
: CategoryPrompt(fmt("%s - %s", (char *) header->id, tr("Categories"))),
|
|
|
|
gameHeader(header)
|
|
|
|
{
|
2011-06-14 19:53:19 +02:00
|
|
|
browser->checkBoxClicked.connect(this, &CategorySelectPrompt::OnCheckboxClick);
|
|
|
|
browserRefresh.connect(this, &CategorySelectPrompt::onBrowserRefresh);
|
|
|
|
resetChanges.connect(this, &CategorySelectPrompt::onResetChanges);
|
2011-06-03 22:31:09 +02:00
|
|
|
|
2011-06-14 19:53:19 +02:00
|
|
|
browserRefresh();
|
2011-06-03 22:31:09 +02:00
|
|
|
}
|
|
|
|
|
2011-06-14 19:53:19 +02:00
|
|
|
void CategorySelectPrompt::onResetChanges()
|
2011-06-03 22:31:09 +02:00
|
|
|
{
|
2011-06-14 19:53:19 +02:00
|
|
|
GameCategories.Load(Settings.ConfigPath);
|
2011-06-03 22:31:09 +02:00
|
|
|
}
|
|
|
|
|
2011-06-14 19:53:19 +02:00
|
|
|
void CategorySelectPrompt::onBrowserRefresh()
|
2011-06-03 22:31:09 +02:00
|
|
|
{
|
2011-06-14 19:53:19 +02:00
|
|
|
browser->Clear();
|
|
|
|
GameCategories.CategoryList.goToFirst();
|
|
|
|
do
|
2011-06-03 22:31:09 +02:00
|
|
|
{
|
2011-06-14 19:53:19 +02:00
|
|
|
bool checked = false;
|
|
|
|
const vector<unsigned int> gameCat = GameCategories[gameHeader->id];
|
|
|
|
|
|
|
|
for(u32 i = 0; i < gameCat.size(); ++i)
|
2011-06-03 22:31:09 +02:00
|
|
|
{
|
2011-06-14 19:53:19 +02:00
|
|
|
if(gameCat[i] == GameCategories.CategoryList.getCurrentID())
|
|
|
|
{
|
|
|
|
checked = true;
|
|
|
|
break;
|
|
|
|
}
|
2011-06-03 22:31:09 +02:00
|
|
|
}
|
2011-06-14 19:53:19 +02:00
|
|
|
|
2011-06-24 21:11:36 +02:00
|
|
|
browser->AddEntrie(tr(GameCategories.CategoryList.getCurrentName().c_str()), checked);
|
2011-06-03 22:31:09 +02:00
|
|
|
}
|
2011-06-14 19:53:19 +02:00
|
|
|
while(GameCategories.CategoryList.goToNext());
|
|
|
|
|
|
|
|
GameCategories.CategoryList.goToFirst();
|
2011-06-18 09:00:42 +02:00
|
|
|
browser->RefreshList();
|
2011-06-03 22:31:09 +02:00
|
|
|
}
|
|
|
|
|
2011-06-14 19:53:19 +02:00
|
|
|
void CategorySelectPrompt::OnCheckboxClick(GuiCheckbox *checkBox, int index)
|
2011-06-03 22:31:09 +02:00
|
|
|
{
|
2011-06-14 19:53:19 +02:00
|
|
|
GameCategories.CategoryList.goToFirst();
|
|
|
|
for(int i = 0; i < index; ++i)
|
|
|
|
GameCategories.CategoryList.goToNext();
|
|
|
|
|
2011-06-03 22:31:09 +02:00
|
|
|
if(GameCategories.CategoryList.getCurrentID() == 0)
|
|
|
|
{
|
|
|
|
checkBox->SetChecked(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const vector<unsigned int> gameCat = GameCategories[gameHeader->id];
|
|
|
|
|
|
|
|
u32 i;
|
|
|
|
for(i = 0; i < gameCat.size(); ++i)
|
|
|
|
{
|
|
|
|
if(gameCat[i] == GameCategories.CategoryList.getCurrentID())
|
|
|
|
{
|
|
|
|
if(!checkBox->IsChecked())
|
2011-06-14 19:53:19 +02:00
|
|
|
{
|
2011-06-03 22:31:09 +02:00
|
|
|
GameCategories.RemoveCategory((const char *) gameHeader->id, gameCat[i]);
|
2011-06-14 19:53:19 +02:00
|
|
|
markChanged();
|
|
|
|
}
|
2011-06-03 22:31:09 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(i == gameCat.size() && checkBox->IsChecked())
|
|
|
|
{
|
|
|
|
GameCategories.SetCategory(gameHeader->id, GameCategories.CategoryList.getCurrentID());
|
2011-06-14 19:53:19 +02:00
|
|
|
markChanged();
|
2011-06-03 22:31:09 +02:00
|
|
|
}
|
|
|
|
}
|