src/ai/api/ai_execmode.cpp
author truelight
Sun, 18 Mar 2007 18:02:27 +0000
branchnoai
changeset 9452 4c5eedbc3ba9
parent 9450 d675836e865c
child 9473 dcbcd1c4496d
permissions -rw-r--r--
(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);
}