2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
8 /** @file script_industrylist.cpp Implementation of ScriptIndustryList and friends. */
10 #include "../../stdafx.h"
11 #include "script_industrylist.hpp"
12 #include "../../industry.h"
14 #include "../../safeguards.h"
16 ScriptIndustryList::ScriptIndustryList(HSQUIRRELVM vm
)
18 ScriptList::FillList
<Industry
>(vm
, this);
21 ScriptIndustryList_CargoAccepting::ScriptIndustryList_CargoAccepting(CargoID cargo_id
)
23 ScriptList::FillList
<Industry
>(this,
24 [cargo_id
](const Industry
*i
) { return i
->IsCargoAccepted(cargo_id
); }
28 ScriptIndustryList_CargoProducing::ScriptIndustryList_CargoProducing(CargoID cargo_id
)
30 ScriptList::FillList
<Industry
>(this,
31 [cargo_id
](const Industry
*i
) { return i
->IsCargoProduced(cargo_id
); }