2014-02-06 19:36:19 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file script_storypagelist.cpp Implementation of ScriptStoryPageList and friends. */
|
|
|
|
|
|
|
|
#include "../../stdafx.h"
|
|
|
|
#include "script_storypagelist.hpp"
|
|
|
|
#include "script_story_page.hpp"
|
|
|
|
#include "../../story_base.h"
|
|
|
|
|
2014-04-23 20:13:33 +00:00
|
|
|
#include "../../safeguards.h"
|
|
|
|
|
2014-02-06 19:36:19 +00:00
|
|
|
ScriptStoryPageList::ScriptStoryPageList(ScriptCompany::CompanyID company)
|
|
|
|
{
|
2023-05-08 17:01:06 +00:00
|
|
|
uint8_t c = company;
|
2014-02-06 19:36:19 +00:00
|
|
|
if (company == ScriptCompany::COMPANY_INVALID) c = INVALID_COMPANY;
|
|
|
|
|
2019-12-17 20:21:33 +00:00
|
|
|
for (StoryPage *p : StoryPage::Iterate()) {
|
2014-02-06 19:36:19 +00:00
|
|
|
if (p->company == c || p->company == INVALID_COMPANY) {
|
|
|
|
this->AddItem(p->index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|