summaryrefslogtreecommitdiff
path: root/src/script/api/script_storypagelist.cpp
diff options
context:
space:
mode:
authorzuu <zuu@openttd.org>2014-02-06 19:36:19 +0000
committerzuu <zuu@openttd.org>2014-02-06 19:36:19 +0000
commit14d99c696198c113a7d0516d5524cae1c55ebd82 (patch)
treed7eb8aad2639ac28ebdb8e26f519abc31a654bde /src/script/api/script_storypagelist.cpp
parent5165be2698a9d92de4b675b0dece9057e92484bf (diff)
downloadopenttd-14d99c696198c113a7d0516d5524cae1c55ebd82.tar.xz
(svn r26304) -Fix (26303): Forgot to add new files
Diffstat (limited to 'src/script/api/script_storypagelist.cpp')
-rw-r--r--src/script/api/script_storypagelist.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/script/api/script_storypagelist.cpp b/src/script/api/script_storypagelist.cpp
new file mode 100644
index 000000000..795ff0201
--- /dev/null
+++ b/src/script/api/script_storypagelist.cpp
@@ -0,0 +1,28 @@
+/* $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_storypagelist.cpp Implementation of ScriptStoryPageList and friends. */
+
+#include "../../stdafx.h"
+#include "script_storypagelist.hpp"
+#include "script_story_page.hpp"
+#include "../../story_base.h"
+
+ScriptStoryPageList::ScriptStoryPageList(ScriptCompany::CompanyID company)
+{
+ uint8 c = company;
+ if (company == ScriptCompany::COMPANY_INVALID) c = INVALID_COMPANY;
+
+ StoryPage *p;
+ FOR_ALL_STORY_PAGES(p) {
+ if (p->company == c || p->company == INVALID_COMPANY) {
+ this->AddItem(p->index);
+ }
+ }
+}