summaryrefslogtreecommitdiff
path: root/src/newgrf_object.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-08-27 22:21:23 +0000
committerrubidium <rubidium@openttd.org>2010-08-27 22:21:23 +0000
commit3e9e1b8e659c7fe36ac2188fb86ac601a8210d50 (patch)
tree914d8fa55046ec016a4a6ca60210ceba87bad2c8 /src/newgrf_object.cpp
parent01927590a52ee49192a47335d4509d91e0c5d27d (diff)
downloadopenttd-3e9e1b8e659c7fe36ac2188fb86ac601a8210d50.tar.xz
(svn r20638) -Codechange: split object.h
Diffstat (limited to 'src/newgrf_object.cpp')
-rw-r--r--src/newgrf_object.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/newgrf_object.cpp b/src/newgrf_object.cpp
new file mode 100644
index 000000000..4728f876a
--- /dev/null
+++ b/src/newgrf_object.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 newgrf_object.cpp Handling of object NewGRFs. */
+
+#include "stdafx.h"
+#include "newgrf_object.h"
+#include "object_map.h"
+
+extern const ObjectSpec _original_objects[];
+
+/* static */ const ObjectSpec *ObjectSpec::Get(ObjectType index)
+{
+ assert(index < OBJECT_MAX);
+ return &_original_objects[index];
+}
+
+/* static */ const ObjectSpec *ObjectSpec::GetByTile(TileIndex tile)
+{
+ return ObjectSpec::Get(GetObjectType(tile));
+}
+