Files @ r21606:c4d9fa63836a
Branch filter:

Location: cpp/openttd-patchpack/source/src/script/api/script_townlist.cpp

rubidium
(svn r26736) -Fix [Script]: infinite loop (by scripts; always returning the same item) when sorted by item in descending order by oddly constructed FindNext that uses forward iterators. Simply use the same code as the ascending item sort but use the reverse iterator instead of the forward. Also do this same trick for the descending value sort even though I couldn't trigger the problem there
/* $Id$ */

/*
 * 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/>.
 */

/** @file script_townlist.cpp Implementation of ScriptTownList and friends. */

#include "../../stdafx.h"
#include "script_townlist.hpp"
#include "../../town.h"

#include "../../safeguards.h"

ScriptTownList::ScriptTownList()
{
	Town *t;
	FOR_ALL_TOWNS(t) {
		this->AddItem(t->index);
	}
}

ScriptTownEffectList::ScriptTownEffectList()
{
	for (int i = TE_BEGIN; i < TE_END; i++) {
		this->AddItem(i);
	}
}