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

27 lines
591 B
C++
Raw Normal View History

#include "CEmptyAI.h"
2007-10-21 19:45:13 +03:00
#include <iostream>
void CEmptyAI::init(ICallback * 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 *)
{
}
void CEmptyAI::heroMoved(const HeroMoveDetails &)
{
}
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
}