(svn r9282) [NoAI] -Add: added AIAccounting, which tracks the cost of your buying/selling.
DoCommand no longer returns the cost, it returns a bool.
Costs are available via this Accounting class.
/* $Id$ */
/** @file ai_execmode.cpp class to switch the AI to Execute mode */
#include "ai_execmode.hpp"
bool AIExecMode::ModeProc(TileIndex tile, uint32 p1, uint32 p2, uint32 flags, uint procc)
{
/* In execution mode we only return 'true', telling the DoCommand it
* should continue with the real execution of the command. */
return true;
}
AIExecMode::AIExecMode()
{
this->last_mode = this->GetDoCommandMode();
this->SetDoCommandMode(&AIExecMode::ModeProc);
}
AIExecMode::~AIExecMode()
{
this->SetDoCommandMode(this->last_mode);
}