summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_list.hpp.sq
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2011-11-29 23:29:20 +0000
committertruebrain <truebrain@openttd.org>2011-11-29 23:29:20 +0000
commit7158aaea3100fbae72c75645800592117375f897 (patch)
tree30b4f0058553c0246ea3c5d773972bbafedac5b7 /src/ai/api/ai_list.hpp.sq
parente60747a6043d42b872d02ba667f99187b5d3f1d7 (diff)
downloadopenttd-7158aaea3100fbae72c75645800592117375f897.tar.xz
(svn r23373) -Add: move the AI API to script/api/ai, and move the Squirrel C++ glue templates to script/api/template
Diffstat (limited to 'src/ai/api/ai_list.hpp.sq')
-rw-r--r--src/ai/api/ai_list.hpp.sq74
1 files changed, 0 insertions, 74 deletions
diff --git a/src/ai/api/ai_list.hpp.sq b/src/ai/api/ai_list.hpp.sq
deleted file mode 100644
index a44a71293..000000000
--- a/src/ai/api/ai_list.hpp.sq
+++ /dev/null
@@ -1,74 +0,0 @@
-/* $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/api/script_list.hpp"
-
-namespace SQConvert {
- /* Allow enums to be used as Squirrel parameters */
- template <> inline ScriptList::SorterType GetParam(ForceType<ScriptList::SorterType>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQInteger tmp; sq_getinteger(vm, index, &tmp); return (ScriptList::SorterType)tmp; }
- template <> inline int Return<ScriptList::SorterType>(HSQUIRRELVM vm, ScriptList::SorterType res) { sq_pushinteger(vm, (int32)res); return 1; }
-
- /* Allow ScriptList to be used as Squirrel parameter */
- template <> inline ScriptList *GetParam(ForceType<ScriptList *>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQUserPointer instance; sq_getinstanceup(vm, index, &instance, 0); return (ScriptList *)instance; }
- template <> inline ScriptList &GetParam(ForceType<ScriptList &>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQUserPointer instance; sq_getinstanceup(vm, index, &instance, 0); return *(ScriptList *)instance; }
- template <> inline const ScriptList *GetParam(ForceType<const ScriptList *>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQUserPointer instance; sq_getinstanceup(vm, index, &instance, 0); return (ScriptList *)instance; }
- template <> inline const ScriptList &GetParam(ForceType<const ScriptList &>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQUserPointer instance; sq_getinstanceup(vm, index, &instance, 0); return *(ScriptList *)instance; }
- template <> inline int Return<ScriptList *>(HSQUIRRELVM vm, ScriptList *res) { if (res == NULL) { sq_pushnull(vm); return 1; } res->AddRef(); Squirrel::CreateClassInstanceVM(vm, "List", res, NULL, DefSQDestructorCallback<ScriptList>, true); return 1; }
-} // namespace SQConvert
-
-template <> const char *GetClassName<ScriptList, ST_AI>() { return "AIList"; }
-
-void SQAIList_Register(Squirrel *engine)
-{
- DefSQClass<ScriptList, ST_AI> SQAIList("AIList");
- SQAIList.PreRegister(engine);
- SQAIList.AddConstructor<void (ScriptList::*)(), 1>(engine, "x");
-
- SQAIList.DefSQConst(engine, ScriptList::SORT_BY_VALUE, "SORT_BY_VALUE");
- SQAIList.DefSQConst(engine, ScriptList::SORT_BY_ITEM, "SORT_BY_ITEM");
-
- SQAIList.DefSQConst(engine, ScriptList::SORT_ASCENDING, "SORT_ASCENDING");
- SQAIList.DefSQConst(engine, ScriptList::SORT_DESCENDING, "SORT_DESCENDING");
-
- SQAIList.DefSQMethod(engine, &ScriptList::AddItem, "AddItem", 3, "xii");
- SQAIList.DefSQMethod(engine, &ScriptList::RemoveItem, "RemoveItem", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::Clear, "Clear", 1, "x");
- SQAIList.DefSQMethod(engine, &ScriptList::HasItem, "HasItem", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::Begin, "Begin", 1, "x");
- SQAIList.DefSQMethod(engine, &ScriptList::Next, "Next", 1, "x");
- SQAIList.DefSQMethod(engine, &ScriptList::IsEmpty, "IsEmpty", 1, "x");
- SQAIList.DefSQMethod(engine, &ScriptList::IsEnd, "IsEnd", 1, "x");
- SQAIList.DefSQMethod(engine, &ScriptList::Count, "Count", 1, "x");
- SQAIList.DefSQMethod(engine, &ScriptList::GetValue, "GetValue", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::SetValue, "SetValue", 3, "xii");
- SQAIList.DefSQMethod(engine, &ScriptList::Sort, "Sort", 3, "xib");
- SQAIList.DefSQMethod(engine, &ScriptList::AddList, "AddList", 2, "xx");
- SQAIList.DefSQMethod(engine, &ScriptList::RemoveAboveValue, "RemoveAboveValue", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::RemoveBelowValue, "RemoveBelowValue", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::RemoveBetweenValue, "RemoveBetweenValue", 3, "xii");
- SQAIList.DefSQMethod(engine, &ScriptList::RemoveValue, "RemoveValue", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::RemoveTop, "RemoveTop", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::RemoveBottom, "RemoveBottom", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::RemoveList, "RemoveList", 2, "xx");
- SQAIList.DefSQMethod(engine, &ScriptList::KeepAboveValue, "KeepAboveValue", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::KeepBelowValue, "KeepBelowValue", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::KeepBetweenValue, "KeepBetweenValue", 3, "xii");
- SQAIList.DefSQMethod(engine, &ScriptList::KeepValue, "KeepValue", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::KeepTop, "KeepTop", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::KeepBottom, "KeepBottom", 2, "xi");
- SQAIList.DefSQMethod(engine, &ScriptList::KeepList, "KeepList", 2, "xx");
- SQAIList.DefSQAdvancedMethod(engine, &ScriptList::_get, "_get");
- SQAIList.DefSQAdvancedMethod(engine, &ScriptList::_set, "_set");
- SQAIList.DefSQAdvancedMethod(engine, &ScriptList::_nexti, "_nexti");
- SQAIList.DefSQAdvancedMethod(engine, &ScriptList::Valuate, "Valuate");
-
- SQAIList.PostRegister(engine);
-}