1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00
vcmi/AI/EmptyAI/CEmptyAI.cpp

28 lines
592 B
C++
Raw Normal View History

#include "StdInc.h"
#include "CEmptyAI.h"
2011-05-04 05:32:35 +03:00
void CEmptyAI::init(CCallback * CB)
2007-10-21 19:45:13 +03:00
{
cb = CB;
human=false;
2007-12-01 14:50:33 +02:00
playerID=cb->getMyColor();
2007-10-21 19:45:13 +03:00
std::cout << "EmptyAI initialized." << std::endl;
}
void CEmptyAI::yourTurn()
{
cb->endTurn();
}
void CEmptyAI::heroKilled(const CGHeroInstance *)
{
}
void CEmptyAI::heroCreated(const CGHeroInstance *)
{
}
2011-01-29 21:07:49 +02:00
void CEmptyAI::heroMoved(const TryMoveHero& TMH)
{
}
void CEmptyAI::heroGotLevel(const CGHeroInstance *hero, int pskill, std::vector<ui16> &skills, boost::function<void(ui32)> &callback)
{
callback(rand()%skills.size());
2010-08-04 06:32:24 +03:00
}