2014-12-07 21:47:06 +01:00
|
|
|
// Copyright 2014 Dolphin Emulator Project / Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-12-07 21:47:06 +01:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-05-04 05:01:16 +02:00
|
|
|
#include <string>
|
2014-12-07 21:47:06 +01: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 02:38:01 +02:00
|
|
|
AppLoader_THREEDSX(FileUtil::IOFile&& file, const std::string& filename,
|
|
|
|
const std::string& filepath)
|
2016-09-19 03:01:46 +02:00
|
|
|
: AppLoader(std::move(file)), filename(std::move(filename)), filepath(filepath) {}
|
2014-12-07 21:47:06 +01:00
|
|
|
|
2015-01-07 00:10:13 +01: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-18 00:30:44 +02:00
|
|
|
FileType GetFileType() override {
|
|
|
|
return IdentifyType(file);
|
|
|
|
}
|
|
|
|
|
2019-03-23 21:04:19 +01:00
|
|
|
ResultStatus Load(std::shared_ptr<Kernel::Process>& process) override;
|
2015-05-04 05:01:16 +02:00
|
|
|
|
2016-04-13 23:04:05 +02:00
|
|
|
ResultStatus ReadIcon(std::vector<u8>& buffer) override;
|
|
|
|
|
2018-07-28 17:30:54 +02:00
|
|
|
ResultStatus ReadRomFS(std::shared_ptr<FileSys::RomFSReader>& romfs_file) override;
|
2015-09-21 07:30:06 +02:00
|
|
|
|
2015-05-04 05:01:16 +02:00
|
|
|
private:
|
|
|
|
std::string filename;
|
2015-09-21 07:30:06 +02:00
|
|
|
std::string filepath;
|
2014-12-07 21:47:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Loader
|