2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2011-11-29 23:15:35 +00:00
|
|
|
/** @file script_bridgelist.cpp Implementation of ScriptBridgeList and friends. */
|
2009-01-12 17:11:45 +00:00
|
|
|
|
2011-01-22 10:33:16 +00:00
|
|
|
#include "../../stdafx.h"
|
2011-11-29 23:07:38 +00:00
|
|
|
#include "script_bridgelist.hpp"
|
|
|
|
#include "script_bridge.hpp"
|
2009-01-12 17:11:45 +00:00
|
|
|
#include "../../bridge.h"
|
|
|
|
|
2014-04-23 20:13:33 +00:00
|
|
|
#include "../../safeguards.h"
|
|
|
|
|
2011-11-29 23:15:35 +00:00
|
|
|
ScriptBridgeList::ScriptBridgeList()
|
2009-01-12 17:11:45 +00:00
|
|
|
{
|
2009-02-14 21:17:35 +00:00
|
|
|
for (byte j = 0; j < MAX_BRIDGES; j++) {
|
2011-11-29 23:15:35 +00:00
|
|
|
if (ScriptBridge::IsValidBridge(j)) this->AddItem(j);
|
2009-02-14 21:17:35 +00:00
|
|
|
}
|
2009-01-12 17:11:45 +00:00
|
|
|
}
|
|
|
|
|
2011-11-29 23:15:35 +00:00
|
|
|
ScriptBridgeList_Length::ScriptBridgeList_Length(uint length)
|
2009-01-12 17:11:45 +00:00
|
|
|
{
|
2009-02-14 21:17:35 +00:00
|
|
|
for (byte j = 0; j < MAX_BRIDGES; j++) {
|
2011-11-29 23:15:35 +00:00
|
|
|
if (ScriptBridge::IsValidBridge(j)) {
|
|
|
|
if (length >= (uint)ScriptBridge::GetMinLength(j) && length <= (uint)ScriptBridge::GetMaxLength(j)) this->AddItem(j);
|
2009-02-14 21:17:35 +00:00
|
|
|
}
|
|
|
|
}
|
2009-01-12 17:11:45 +00:00
|
|
|
}
|