| 12345678910111213141516171819202122232425 |
- /*
- * FuzzyHelper.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 "FuzzyEngines.h"
- class CBank;
- class DLL_EXPORT FuzzyHelper
- {
- public:
- TacticalAdvantageEngine tacticalAdvantageEngine;
- ui64 estimateBankDanger(const CBank * bank); //TODO: move to another class?
- ui64 evaluateDanger(const CGObjectInstance * obj, const VCAI * ai);
- ui64 evaluateDanger(crint3 tile, const CGHeroInstance * visitor, const VCAI * ai, bool checkGuards = true);
- ui64 evaluateDanger(crint3 tile, const CGHeroInstance * visitor);
- };
|