Files @ r12767:3d23682b3fda
Branch filter:

Location: cpp/openttd-patchpack/source/src/ai/api/ai_enginelist.cpp

rubidium
(svn r17247) -Change: move '3rd party' MD5 implementation also to the 3rdparty directory.
/* $Id$ */

/** @file ai_enginelist.cpp Implementation of AIEngineList and friends. */

#include "ai_enginelist.hpp"
#include "../../company_func.h"
#include "../../engine_base.h"
#include "../../core/bitmath_func.hpp"

AIEngineList::AIEngineList(AIVehicle::VehicleType vehicle_type)
{
	Engine *e;
	FOR_ALL_ENGINES_OF_TYPE(e, (::VehicleType)vehicle_type) {
		if (HasBit(e->company_avail, _current_company)) this->AddItem(e->index);
	}
}