mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-18 17:40:48 +02:00
32 lines
897 B
C
32 lines
897 B
C
|
|
||
|
/*
|
||
|
* CLoadIntegrityValidator.h, part of VCMI engine
|
||
|
*
|
||
|
* Authors: listed in file AUTHORS in main folder
|
||
|
*
|
||
|
* License: GNU General Public License v2.0 or later
|
||
|
* Full text of license available in license.txt file, in main folder
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "BinaryDeserializer.h"
|
||
|
|
||
|
/// Simple byte-to-byte saves comparator
|
||
|
class DLL_LINKAGE CLoadIntegrityValidator
|
||
|
: public IBinaryReader
|
||
|
{
|
||
|
public:
|
||
|
BinaryDeserializer serializer;
|
||
|
std::unique_ptr<CLoadFile> primaryFile, controlFile;
|
||
|
bool foundDesync;
|
||
|
|
||
|
CLoadIntegrityValidator(const boost::filesystem::path &primaryFileName, const boost::filesystem::path &controlFileName, int minimalVersion = version); //throws!
|
||
|
|
||
|
int read( void * data, unsigned size) override; //throws!
|
||
|
void checkMagicBytes(const std::string &text);
|
||
|
|
||
|
std::unique_ptr<CLoadFile> decay(); //returns primary file. CLoadIntegrityValidator stops being usable anymore
|
||
|
};
|