2015-08-08 18:16:33 +02:00
|
|
|
/*
|
|
|
|
* MapComparer.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
|
|
|
|
*
|
|
|
|
*/
|
2015-11-13 16:47:47 +02:00
|
|
|
|
2015-08-08 18:16:33 +02:00
|
|
|
#pragma once
|
2015-11-13 16:47:47 +02:00
|
|
|
|
2016-11-13 12:38:42 +02:00
|
|
|
class CMap;
|
|
|
|
class CGObjectInstance;
|
2015-08-08 18:16:33 +02:00
|
|
|
|
|
|
|
struct MapComparer
|
|
|
|
{
|
2015-08-08 20:04:07 +02:00
|
|
|
const CMap * actual;
|
|
|
|
const CMap * expected;
|
2015-11-13 16:47:47 +02:00
|
|
|
|
2015-08-08 20:04:07 +02:00
|
|
|
void compareHeader();
|
|
|
|
void compareOptions();
|
2015-11-13 16:47:47 +02:00
|
|
|
void compareObject(const CGObjectInstance * actual, const CGObjectInstance * expected);
|
2015-08-08 20:04:07 +02:00
|
|
|
void compareObjects();
|
2015-11-13 16:47:47 +02:00
|
|
|
void compareTerrain();
|
|
|
|
|
|
|
|
void compare();
|
|
|
|
|
2015-08-08 20:04:07 +02:00
|
|
|
void operator() (const std::unique_ptr<CMap>& actual, const std::unique_ptr<CMap>& expected);
|
2015-08-08 18:16:33 +02:00
|
|
|
};
|
|
|
|
|
2016-11-13 12:38:42 +02:00
|
|
|
|
|
|
|
|
2015-08-08 18:16:33 +02:00
|
|
|
|