1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-21 21:17:49 +02:00
vcmi/AI/EmptyAI/CEmptyAI.cpp

27 lines
590 B
C++
Raw Normal View History

#include "CEmptyAI.h"
2007-10-21 16:45:13 +00:00
#include <iostream>
2011-05-04 02:32:35 +00:00
void CEmptyAI::init(CCallback * CB)
2007-10-21 16:45:13 +00:00
{
cb = CB;
human=false;
2007-12-01 12:50:33 +00:00
playerID=cb->getMyColor();
2007-10-21 16:45:13 +00: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 19:07:49 +00: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 03:32:24 +00:00
}