src/ai/api/ai_industrylist.cpp
author truebrain
Thu, 28 Feb 2008 01:11:23 +0000
branchnoai
changeset 9803 c86d5834fb11
parent 9777 053e53a1650e
child 9820 8c116d4c6033
permissions -rw-r--r--
(svn r12309) [NoAI] -Codechange: optimize a little bit (a very small little bit, but every bit counts :) ) (glx)
#include "ai_industrylist.hpp"
#include "../../industry.h"

AIIndustryList::AIIndustryList()
{
	Industry *i;
	FOR_ALL_INDUSTRIES(i) {
		this->AddItem(i->index);
	}
}

AIIndustryList_CargoAccepting::AIIndustryList_CargoAccepting(CargoID cargo_id)
{
	const Industry *i;
	const IndustrySpec *indsp;

	FOR_ALL_INDUSTRIES(i) {
		indsp = ::GetIndustrySpec(i->type);

		for (byte j = 0; j < lengthof(indsp->accepts_cargo); j++)
			if (indsp->accepts_cargo[j] == cargo_id) this->AddItem(i->index);
	}
}

AIIndustryList_CargoProducing::AIIndustryList_CargoProducing(CargoID cargo_id)
{
	const Industry *i;
	const IndustrySpec *indsp;

	FOR_ALL_INDUSTRIES(i) {
		indsp = ::GetIndustrySpec(i->type);

		for (byte j = 0; j < lengthof(indsp->produced_cargo); j++)
			if (indsp->produced_cargo[j] == cargo_id) this->AddItem(i->index);
	}
}