2014-06-28 15:38:50 +00:00
|
|
|
#ifndef ATHENA_NO_SAVES
|
2014-04-20 09:14:15 +00:00
|
|
|
// This file is part of libAthena.
|
2013-02-16 18:28:30 +00:00
|
|
|
//
|
2014-04-20 09:14:15 +00:00
|
|
|
// libAthena is free software: you can redistribute it and/or modify
|
2013-02-16 18:28:30 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2014-04-20 09:14:15 +00:00
|
|
|
// libAthena is distributed in the hope that it will be useful,
|
2013-02-16 18:28:30 +00:00
|
|
|
// 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
|
2014-04-20 09:14:15 +00:00
|
|
|
// along with libAthena. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
|
|
|
#include "Athena/WiiSave.hpp"
|
|
|
|
#include "Athena/WiiFile.hpp"
|
|
|
|
#include "Athena/WiiBanner.hpp"
|
2015-03-01 20:42:39 +00:00
|
|
|
#include "Athena/MemoryReader.hpp"
|
|
|
|
#include "Athena/MemoryWriter.hpp"
|
2014-04-20 09:14:15 +00:00
|
|
|
#include "Athena/Utility.hpp"
|
2013-02-16 04:22:16 +00:00
|
|
|
#include "aes.h"
|
|
|
|
#include "ec.h"
|
|
|
|
#include "md5.h"
|
|
|
|
#include "sha1.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <iostream>
|
|
|
|
#include <iomanip>
|
|
|
|
|
|
|
|
|
2014-04-20 09:14:15 +00:00
|
|
|
namespace Athena
|
2013-07-21 03:57:20 +00:00
|
|
|
{
|
|
|
|
|
2013-02-16 04:22:16 +00:00
|
|
|
WiiSave::WiiSave()
|
2014-09-19 11:54:56 +00:00
|
|
|
: m_root(NULL),
|
|
|
|
m_banner(NULL)
|
|
|
|
|
2013-02-16 04:22:16 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WiiSave::~WiiSave()
|
|
|
|
{
|
2014-09-19 11:54:56 +00:00
|
|
|
delete m_root;
|
2013-02-16 04:22:16 +00:00
|
|
|
delete m_banner;
|
|
|
|
m_banner = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-11-29 03:32:37 +00:00
|
|
|
void WiiSave::addFile( WiiFile* file)
|
2013-02-16 04:22:16 +00:00
|
|
|
{
|
2014-09-19 11:54:56 +00:00
|
|
|
m_root->addChild(file);
|
2013-02-16 04:22:16 +00:00
|
|
|
}
|
|
|
|
|
2014-09-19 11:54:56 +00:00
|
|
|
void WiiSave::setRoot(WiiFile* root)
|
2013-09-28 15:14:13 +00:00
|
|
|
{
|
2014-09-19 11:54:56 +00:00
|
|
|
if (root != m_root)
|
|
|
|
delete m_root;
|
2013-09-28 15:14:13 +00:00
|
|
|
|
2014-09-19 11:54:56 +00:00
|
|
|
m_root = root;
|
|
|
|
}
|
|
|
|
|
|
|
|
WiiFile* WiiSave::file(const std::string& filepath)
|
|
|
|
{
|
|
|
|
if (filepath.empty())
|
|
|
|
return nullptr;
|
2013-09-28 15:14:13 +00:00
|
|
|
|
2014-09-19 11:54:56 +00:00
|
|
|
std::string cleanPath(filepath);
|
2013-09-28 15:14:13 +00:00
|
|
|
|
2014-09-19 11:54:56 +00:00
|
|
|
while (cleanPath.at(0) == '/')
|
|
|
|
cleanPath.erase(cleanPath.begin());
|
2013-09-28 15:14:13 +00:00
|
|
|
|
2014-09-19 11:54:56 +00:00
|
|
|
return m_root->child(cleanPath);
|
2013-09-28 15:14:13 +00:00
|
|
|
}
|
|
|
|
|
2014-09-19 11:54:56 +00:00
|
|
|
atUint32 WiiSave::fileCount() const
|
2013-02-16 04:22:16 +00:00
|
|
|
{
|
2014-09-19 11:54:56 +00:00
|
|
|
return m_root->fileCount();
|
2013-02-16 04:22:16 +00:00
|
|
|
}
|
|
|
|
|
2014-09-19 11:54:56 +00:00
|
|
|
WiiFile* WiiSave::root()
|
2013-02-16 04:22:16 +00:00
|
|
|
{
|
2014-09-19 11:54:56 +00:00
|
|
|
return m_root;
|
2013-02-16 04:22:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WiiSave::setBanner(WiiBanner* banner)
|
|
|
|
{
|
|
|
|
m_banner = banner;
|
|
|
|
}
|
|
|
|
|
|
|
|
WiiBanner* WiiSave::banner() const
|
|
|
|
{
|
|
|
|
return m_banner;
|
|
|
|
}
|
2013-07-21 03:57:20 +00:00
|
|
|
|
2014-09-19 11:54:56 +00:00
|
|
|
std::vector<WiiFile *> WiiSave::allFiles() const
|
|
|
|
{
|
|
|
|
return m_root->allChildren();
|
|
|
|
}
|
|
|
|
|
2013-07-21 03:57:20 +00:00
|
|
|
} // zelda
|
2014-06-28 15:38:50 +00:00
|
|
|
|
|
|
|
#endif // ATHENA_NO_SAVES
|