00001 /* $Id$ */ 00002 00003 /* 00004 * This file is part of OpenTTD. 00005 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2. 00006 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00007 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>. 00008 */ 00009 00012 #include "ai_industrylist.hpp" 00013 #include "../../industry.h" 00014 00015 AIIndustryList::AIIndustryList() 00016 { 00017 Industry *i; 00018 FOR_ALL_INDUSTRIES(i) { 00019 this->AddItem(i->index); 00020 } 00021 } 00022 00023 AIIndustryList_CargoAccepting::AIIndustryList_CargoAccepting(CargoID cargo_id) 00024 { 00025 const Industry *i; 00026 00027 FOR_ALL_INDUSTRIES(i) { 00028 for (byte j = 0; j < lengthof(i->accepts_cargo); j++) { 00029 if (i->accepts_cargo[j] == cargo_id) this->AddItem(i->index); 00030 } 00031 } 00032 } 00033 00034 AIIndustryList_CargoProducing::AIIndustryList_CargoProducing(CargoID cargo_id) 00035 { 00036 const Industry *i; 00037 00038 FOR_ALL_INDUSTRIES(i) { 00039 for (byte j = 0; j < lengthof(i->produced_cargo); j++) { 00040 if (i->produced_cargo[j] == cargo_id) this->AddItem(i->index); 00041 } 00042 } 00043 }