diff options
author | rubidium <rubidium@openttd.org> | 2010-08-02 21:35:59 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-08-02 21:35:59 +0000 |
commit | 55129f1fbb6451b27ac45224dcad2cb2ed911f92 (patch) | |
tree | c01c26faf0366f75d6ff2e24e8c42963382467a2 /src | |
parent | 5ae4e27446c6d20855f58a3845e8b3c52fb74aa4 (diff) | |
download | openttd-55129f1fbb6451b27ac45224dcad2cb2ed911f92.tar.xz |
(svn r20326) -Codechange: move UnmovableType to its own file
Diffstat (limited to 'src')
-rw-r--r-- | src/unmovable.h | 3 | ||||
-rw-r--r-- | src/unmovable_cmd.cpp | 2 | ||||
-rw-r--r-- | src/unmovable_map.h | 11 | ||||
-rw-r--r-- | src/unmovable_type.h | 27 |
4 files changed, 31 insertions, 12 deletions
diff --git a/src/unmovable.h b/src/unmovable.h index 2838d1879..330373cb8 100644 --- a/src/unmovable.h +++ b/src/unmovable.h @@ -14,6 +14,7 @@ #include "economy_func.h" #include "strings_type.h" +#include "unmovable_type.h" void UpdateCompanyHQ(Company *c, uint score); @@ -40,7 +41,7 @@ struct UnmovableSpec { * @param index The unmovable type to fetch. * @return The specification. */ - static const UnmovableSpec *Get(int index); + static const UnmovableSpec *Get(UnmovableType index); /** * Get the specification associated with a tile. diff --git a/src/unmovable_cmd.cpp b/src/unmovable_cmd.cpp index ce9bfb161..c3983424e 100644 --- a/src/unmovable_cmd.cpp +++ b/src/unmovable_cmd.cpp @@ -35,7 +35,7 @@ #include "table/sprites.h" #include "table/unmovable_land.h" -/* static */ const UnmovableSpec *UnmovableSpec::Get(int index) +/* static */ const UnmovableSpec *UnmovableSpec::Get(UnmovableType index) { assert(index < UNMOVABLE_MAX); return &_original_unmovable[index]; diff --git a/src/unmovable_map.h b/src/unmovable_map.h index 1b01c5637..7725ac5cb 100644 --- a/src/unmovable_map.h +++ b/src/unmovable_map.h @@ -13,16 +13,7 @@ #define UNMOVABLE_MAP_H #include "tile_map.h" - -/** Types of unmovable structure */ -enum UnmovableType { - UNMOVABLE_TRANSMITTER = 0, ///< The large antenna - UNMOVABLE_LIGHTHOUSE = 1, ///< The nice lighthouse - UNMOVABLE_STATUE = 2, ///< Statue in towns - UNMOVABLE_OWNED_LAND = 3, ///< Owned land 'flag' - UNMOVABLE_HQ = 4, ///< HeadQuarter of a player - UNMOVABLE_MAX, -}; +#include "unmovable_type.h" /** * Gets the UnmovableType of the given unmovable tile diff --git a/src/unmovable_type.h b/src/unmovable_type.h new file mode 100644 index 000000000..92f11c31b --- /dev/null +++ b/src/unmovable_type.h @@ -0,0 +1,27 @@ +/* $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 unmovable_map.h Types related to unmovable tiles. */ + +#ifndef UNMOVABLE_TYPE_H +#define UNMOVABLE_TYPE_H + +/** Types of unmovable structure */ +enum UnmovableType { + UNMOVABLE_TRANSMITTER = 0, ///< The large antenna + UNMOVABLE_LIGHTHOUSE = 1, ///< The nice lighthouse + UNMOVABLE_STATUE = 2, ///< Statue in towns + UNMOVABLE_OWNED_LAND = 3, ///< Owned land 'flag' + UNMOVABLE_HQ = 4, ///< HeadQuarter of a player + UNMOVABLE_MAX, +}; + +struct UnmovableSpec; + +#endif /* UNMOVABLE_MAP_H */ |