2014-12-07 20:47:06 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project / Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-12-07 20:47:06 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-05-04 04:01:16 +01:00
|
|
|
#include <string>
|
2014-12-07 20:47:06 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "core/loader/loader.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Loader namespace
|
|
|
|
|
|
|
|
namespace Loader {
|
|
|
|
|
|
|
|
/// Loads an 3DSX file
|
|
|
|
class AppLoader_THREEDSX final : public AppLoader {
|
|
|
|
public:
|
2016-09-18 01:38:01 +01:00
|
|
|
AppLoader_THREEDSX(FileUtil::IOFile&& file, const std::string& filename,
|
|
|
|
const std::string& filepath)
|
2016-09-19 02:01:46 +01:00
|
|
|
: AppLoader(std::move(file)), filename(std::move(filename)), filepath(filepath) {}
|
2014-12-07 20:47:06 +00:00
|
|
|
|
2015-01-06 23:10:13 +00:00
|
|
|
/**
|
|
|
|
* Returns the type of the file
|
|
|
|
* @param file FileUtil::IOFile open file
|
|
|
|
* @return FileType found, or FileType::Error if this loader doesn't know it
|
|
|
|
*/
|
|
|
|
static FileType IdentifyType(FileUtil::IOFile& file);
|
|
|
|
|
2016-05-17 23:30:44 +01:00
|
|
|
FileType GetFileType() override {
|
|
|
|
return IdentifyType(file);
|
|
|
|
}
|
|
|
|
|
2014-12-07 20:47:06 +00:00
|
|
|
ResultStatus Load() override;
|
2015-05-04 04:01:16 +01:00
|
|
|
|
2016-04-13 22:04:05 +01:00
|
|
|
ResultStatus ReadIcon(std::vector<u8>& buffer) override;
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
ResultStatus ReadRomFS(std::shared_ptr<FileUtil::IOFile>& romfs_file, u64& offset,
|
|
|
|
u64& size) override;
|
2015-09-21 06:30:06 +01:00
|
|
|
|
2015-05-04 04:01:16 +01:00
|
|
|
private:
|
|
|
|
std::string filename;
|
2015-09-21 06:30:06 +01:00
|
|
|
std::string filepath;
|
2014-12-07 20:47:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Loader
|