stk-code_catmod/src/achievements/achievements_slot.cpp

135 lines
4.5 KiB
C++
Raw Normal View History

//
// SuperTuxKart - a fun racing game with go-kart
// Copyright (C) 2013 Glenn De Jonghe
//
// 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 3
// of the License, 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 this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "achievements/achievements_slot.hpp"
#include "achievements/achievement_info.hpp"
#include "achievements/achievements_manager.hpp"
#include "io/utf_writer.hpp"
#include "utils/log.hpp"
#include "utils/ptr_vector.hpp"
#include "utils/translation.hpp"
#include "online/current_user.hpp"
#include <sstream>
#include <fstream>
#include <stdlib.h>
#include <assert.h>
// ----------------------------------------------------------------------------
AchievementsStatus::AchievementsStatus()
{
m_valid = true;
m_online = true;
} // AchievementsStatus
// ----------------------------------------------------------------------------
AchievementsStatus::~AchievementsStatus()
{
deleteAchievements();
} // ~AchievementsStatus
// ----------------------------------------------------------------------------
/** Loads the saved state of all achievements from an XML file.
* \param input The XML node to load the data from.
*/
void AchievementsStatus::load(const XMLNode * input)
{
std::vector<XMLNode*> xml_achievements;
input->getNodes("achievement", xml_achievements);
for (unsigned int i = 0; i < xml_achievements.size(); i++)
{
uint32_t achievement_id(0);
xml_achievements[i]->get("id", &achievement_id);
Achievement * achievement = getAchievement(achievement_id);
if (achievement == NULL)
{
Log::warn("AchievementsStatus",
"Found saved achievement data for a non-existent "
"achievement. Discarding.");
continue;
}
achievement->load(xml_achievements[i]);
} // for i in xml_achievements
} // load
// ----------------------------------------------------------------------------
void AchievementsStatus::add(Achievement *achievement)
{
m_achievements[achievement->getID()] = achievement;
} // add
// ----------------------------------------------------------------------------
void AchievementsStatus::deleteAchievements()
{
std::map<uint32_t, Achievement *>::iterator it;
for ( it = m_achievements.begin(); it != m_achievements.end(); ++it ) {
delete it->second;
}
m_achievements.clear();
} // deleteAchievements
// ----------------------------------------------------------------------------
/** Saves the achievement status to a file. Achievements are stored as part
* of the player data file players.xml.
* \param out File to write to.
*/
void AchievementsStatus::save(UTFWriter &out)
{
out << L" <achievements online=\"" << m_online << L"\"> \n";
std::map<uint32_t, Achievement*>::const_iterator i;
for(i = m_achievements.begin(); i != m_achievements.end(); i++)
{
if (i->second != NULL)
i->second->save(out);
}
out << L" </achievements>\n";
} // save
// ----------------------------------------------------------------------------
Achievement * AchievementsStatus::getAchievement(uint32_t id)
{
if ( m_achievements.find(id) != m_achievements.end())
return m_achievements[id];
return NULL;
}
// ----------------------------------------------------------------------------
void AchievementsStatus::sync(const std::vector<uint32_t> & achieved_ids)
{
for(unsigned int i =0; i < achieved_ids.size(); ++i)
{
Achievement * achievement = getAchievement(achieved_ids[i]);
if(achievement != NULL)
achievement->setAchieved();
}
}
// ----------------------------------------------------------------------------
void AchievementsStatus::onRaceEnd()
{
//reset all values that need to be reset
std::map<uint32_t, Achievement *>::iterator iter;
for ( iter = m_achievements.begin(); iter != m_achievements.end(); ++iter ) {
iter->second->onRaceEnd();
}
}