summaryrefslogtreecommitdiff
path: root/src/script/api
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
parent5165be2698a9d92de4b675b0dece9057e92484bf (diff)
downloadopenttd-14d99c696198c113a7d0516d5524cae1c55ebd82.tar.xz
(svn r26304) -Fix (26303): Forgot to add new files
Diffstat (limited to 'src/script/api')
-rw-r--r--src/script/api/game/game_storypagelist.hpp.sq25
-rw-r--r--src/script/api/script_storypagelist.cpp28
-rw-r--r--src/script/api/script_storypagelist.hpp31
-rw-r--r--src/script/api/template/template_storypagelist.hpp.sq21
4 files changed, 105 insertions, 0 deletions
diff --git a/src/script/api/game/game_storypagelist.hpp.sq b/src/script/api/game/game_storypagelist.hpp.sq
new file mode 100644
index 000000000..99b25a30a
--- /dev/null
+++ b/src/script/api/game/game_storypagelist.hpp.sq
@@ -0,0 +1,25 @@
+/* $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/>.
+ */
+
+/* THIS FILE IS AUTO-GENERATED; PLEASE DO NOT ALTER MANUALLY */
+
+#include "../script_storypagelist.hpp"
+#include "../template/template_storypagelist.hpp.sq"
+
+
+template <> const char *GetClassName<ScriptStoryPageList, ST_GS>() { return "GSStoryPageList"; }
+
+void SQGSStoryPageList_Register(Squirrel *engine)
+{
+ DefSQClass<ScriptStoryPageList, ST_GS> SQGSStoryPageList("GSStoryPageList");
+ SQGSStoryPageList.PreRegister(engine, "GSList");
+ SQGSStoryPageList.AddConstructor<void (ScriptStoryPageList::*)(ScriptCompany::CompanyID company), 2>(engine, "xi");
+
+ SQGSStoryPageList.PostRegister(engine);
+}
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);
+ }
+ }
+}
diff --git a/src/script/api/script_storypagelist.hpp b/src/script/api/script_storypagelist.hpp
new file mode 100644
index 000000000..7aa3389f3
--- /dev/null
+++ b/src/script/api/script_storypagelist.hpp
@@ -0,0 +1,31 @@
+/* $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.hpp List all story pages. */
+
+#ifndef SCRIPT_STORYPAGELIST_HPP
+#define SCRIPT_STORYPAGELIST_HPP
+
+#include "script_list.hpp"
+#include "script_company.hpp"
+
+/**
+ * Create a list of all story pages.
+ * @api game
+ * @ingroup ScriptList
+ */
+class ScriptStoryPageList : public ScriptList {
+public:
+ /**
+ * @param company The company to list story pages for, or ScriptCompany::COMPANY_INVALID to only show global pages. Global pages are always included independent of this parameter.
+ */
+ ScriptStoryPageList(ScriptCompany::CompanyID company);
+};
+
+#endif /* SCRIPT_STORYPAGELIST_HPP */
diff --git a/src/script/api/template/template_storypagelist.hpp.sq b/src/script/api/template/template_storypagelist.hpp.sq
new file mode 100644
index 000000000..7325969fd
--- /dev/null
+++ b/src/script/api/template/template_storypagelist.hpp.sq
@@ -0,0 +1,21 @@
+/* $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/>.
+ */
+
+/* THIS FILE IS AUTO-GENERATED; PLEASE DO NOT ALTER MANUALLY */
+
+#include "../script_storypagelist.hpp"
+
+namespace SQConvert {
+ /* Allow ScriptStoryPageList to be used as Squirrel parameter */
+ template <> inline ScriptStoryPageList *GetParam(ForceType<ScriptStoryPageList *>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQUserPointer instance; sq_getinstanceup(vm, index, &instance, 0); return (ScriptStoryPageList *)instance; }
+ template <> inline ScriptStoryPageList &GetParam(ForceType<ScriptStoryPageList &>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQUserPointer instance; sq_getinstanceup(vm, index, &instance, 0); return *(ScriptStoryPageList *)instance; }
+ template <> inline const ScriptStoryPageList *GetParam(ForceType<const ScriptStoryPageList *>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQUserPointer instance; sq_getinstanceup(vm, index, &instance, 0); return (ScriptStoryPageList *)instance; }
+ template <> inline const ScriptStoryPageList &GetParam(ForceType<const ScriptStoryPageList &>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQUserPointer instance; sq_getinstanceup(vm, index, &instance, 0); return *(ScriptStoryPageList *)instance; }
+ template <> inline int Return<ScriptStoryPageList *>(HSQUIRRELVM vm, ScriptStoryPageList *res) { if (res == NULL) { sq_pushnull(vm); return 1; } res->AddRef(); Squirrel::CreateClassInstanceVM(vm, "StoryPageList", res, NULL, DefSQDestructorCallback<ScriptStoryPageList>, true); return 1; }
+} // namespace SQConvert