UnlockCluster.cpp 624 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * FindObj.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "UnlockCluster.h"
  12. #include "../AIGateway.h"
  13. #include "../Engine/Nullkiller.h"
  14. #include "../AIUtility.h"
  15. namespace NKAI
  16. {
  17. using namespace Goals;
  18. bool UnlockCluster::operator==(const UnlockCluster & other) const
  19. {
  20. return other.tile == tile;
  21. }
  22. std::string UnlockCluster::toString() const
  23. {
  24. return "Unlock Cluster " + cluster->blocker->getObjectName() + tile.toString();
  25. }
  26. }