f7d2889fb4
Adds missing includes to prevent potential compilation issues in the future. Also moves the definition of a struct into the cpp file, so that some includes don't need to be introduced within the header.
45 lines
976 B
C++
45 lines
976 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <array>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "common/common_types.h"
|
|
#include "core/file_sys/vfs.h"
|
|
|
|
namespace FileSys {
|
|
|
|
VirtualFile PatchIPS(const VirtualFile& in, const VirtualFile& ips);
|
|
|
|
class IPSwitchCompiler {
|
|
public:
|
|
explicit IPSwitchCompiler(VirtualFile patch_text);
|
|
~IPSwitchCompiler();
|
|
|
|
std::array<u8, 0x20> GetBuildID() const;
|
|
bool IsValid() const;
|
|
VirtualFile Apply(const VirtualFile& in) const;
|
|
|
|
private:
|
|
struct IPSwitchPatch;
|
|
|
|
void ParseFlag(const std::string& flag);
|
|
void Parse();
|
|
|
|
bool valid = false;
|
|
|
|
VirtualFile patch_text;
|
|
std::vector<IPSwitchPatch> patches;
|
|
std::array<u8, 0x20> nso_build_id{};
|
|
bool is_little_endian = false;
|
|
s64 offset_shift = 0;
|
|
bool print_values = false;
|
|
std::string last_comment = "";
|
|
};
|
|
|
|
} // namespace FileSys
|